Skip to content

Commit fc5d345

Browse files
authored
Merge pull request #60 from highcharts-for-python/rc-v.1.6
Release Candidate v.1.6.0
2 parents cd2b3bf + 1fe2420 commit fc5d345

19 files changed

+136
-29
lines changed

CHANGES.rst

+19
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
11

2+
Release 1.6.0
3+
=========================================
4+
5+
* **ENHANCEMENT:** Align the API to **Highcharts (JS) v.11.3** (#55). In particular, this includes:
6+
7+
* Updated requirements to depend on Highcharts Core for Python v.1.6.
8+
* Added ``ChartOptions.axis_layout_runs`` property.
9+
* Added ``ColorAxis.height`` property.
10+
* Added ``ColorAxis.width`` property.
11+
* Added ``Data.column_types`` property.
12+
* Added ``Exporting.fetch_options`` property.
13+
* Implemented support for verbose axis date-time unit labelling configuration (see: ``DateTimeLabelFormats``).
14+
15+
* **BUGFIX:** Fixed missing functionality for ``RangeSelectorButton.type`` property (#56).
16+
* **BUGFIX:** Fixed missing ``FlagData.text`` property (courtesy of `@szemek <https://github.com/szemek>`__ )
17+
* **DOCUMENTATION:** Fixed typos in **Getting Started** tutorial.
18+
19+
-----------------------
20+
221
Release 1.5.0
322
=========================================
423

LICENSE

+7-2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ Without prejudice to the limited right to download and test the Wrapper for eval
1818

1919
A Wrapper License (as defined below) or renewal thereof can only be purchased by a Licensee either already holding a License to the Software, or at the same time as purchasing such a License, as an add-on product to such License, and only by a Licensee holding an active and valid enrolment in the Highcharts Advantage plan. The purchase of, and right to use the Licensed Software shall remain governed by the terms and conditions of the License issued by Highsoft to Licensee, whether this is Highsoft Standard License Agreement, Highsoft Terms and Conditions for Subscription to Annual License to Highsoft Software, or another licensing agreement as agreed between Highsoft and Licensee, as applicable (such terms and conditions between Highsoft and Licensee hereinafter collectively referred to as the “Main Agreement”).
2020

21+
A Wrapper License (as defined below) can additionally be obtained by holding an active and valid Educational or Personal License to the Software. The right to use the Licensed Software shall remain governed by the terms and conditions of the Authorized User issued by Highsoft to Authorized User, as defined in the Educational and Personal License 1.0, (such terms and conditions between Highsoft and Authorized User hereinafter collectively referred to as the "Main Agreement").
22+
2123
These Wrapper T&Cs constitute an addendum to the Main Agreement and an integral part thereof and apply to the use of the Wrapper only.
2224

2325
In the case of any discrepancy between the Main Agreement and these Wrapper T&Cs related to the licensing of the Wrapper, these Wrapper T&Cs shall prevail.
@@ -86,13 +88,16 @@ Licensee shall not modify, delete or obscure any notices of proprietary rights o
8688
6. Wrapper Support
8789
***********************************************
8890

89-
A Wrapper License entitles Licensee to the support services and access to new Releases of the Wrapper as set out herein. While support for the Wrapper is contingent upon Licensee’s valid enrollment in the Highcharts Advantage plan and the annual number of hours of support available for support of the Licensed Software for each successive twelve month term during the period that Licensee is enrolled in Highcharts Advantage (each, a “Support Year”) are inclusive of the number of hours of support offered during such Support Year for the Wrapper, support of the Wrapper is not covered under Licensee’s enrollment in Highcharts Advantage, but is offered by Highsoft for a separate fee and provided separately, directly and independently by HCP.
91+
A Wrapper License entitles Licensee to the support services and access to new Releases of the Wrapper as set out herein. While support for the Wrapper is contingent upon Licensee’s valid enrollment in the Highcharts Advantage plan and the annual number of hours of support available for support of the Licensed Software for each successive twelve month term during the period that Licensee is enrolled in Highcharts Advantage (each, a “Support Year”) are inclusive of the number of hours of support offered during such Support Year for the Wrapper, support of the Wrapper is not covered under Licensee’s enrollment in Highcharts Advantage, but is offered by Highsoft for a separate fee and provided separately, directly and independently by HCP. In the event that the Licensee is not enrolled in the Highcharts Advantage Plan, for example if the Main Agreement grants the Licensee a Personal or Educational License, then the Licensee shall not be entitled to the support services outlined herein.
9092

9193
All support inquiries related to the Wrapper shall be sent to [email protected] or filed at https://www.highchartspython.com.
9294

93-
Under a valid and effective Wrapper License, Licensee shall be entitled to receive from HCP:
95+
Under a valid and effective Wrapper License, Licensee shall be entitled to receive from HCP:
9496

9597
i. All new releases or updates of the Wrapper released during the applicable Advantage Period;
98+
99+
Under a valid and effective Wrapper License, contingent upon the Licensee’s valid enrollment in the Highcharts Advantage Plan and payment of applicable fees, Licensee shall be entitled to receive from HCP:
100+
96101
ii. Up to ten (10) hours of the personalized technical support for the Wrapper and/or the Licensed Software
97102
(combined) per Developer per Support Year based on the number of Developers stated in the License Statement for
98103
the License. Licensee may freely distribute its included total of ten (10) hours of personalized technical

README.rst

+2-2
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.2.0.
19+
The library supports Highcharts (JS) v.10.2 and higher, including Highcharts (JS) v.11.3.0.
2020

2121
**Highcharts Stock for Python** is fully integrated with the broader Python ecosystem,
2222
in particular:
@@ -80,7 +80,7 @@ Before you install, please be aware of the following "hard" dependencies:
8080
* Python 3.10 or higher
8181
* Highcharts Stock (JS) v.10.2 or higher (not technically a Python dependency, but
8282
it won't work with earlier versions of Highcharts Stock)
83-
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.3 or higher
83+
* `Highcharts Core for Python <https://core-docs.highchartspython.com/en/latest/>`__ v.1.6 or higher
8484
* `esprima-python <https://github.com/Kronuz/esprima-python>`__ v.4.0 or higher
8585
* `requests <https://requests.readthedocs.io/en/latest/>`__ v.2.31 or higher
8686
* `validator-collection <https://validator-collection.readthedocs.io/en/latest/>`__

docs/_contributors.rst

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
* Chris Modzelewski (`@hcpchris <https://github.com/hcpchris>`__ / `@insightindustry <https://github.com/insightindustry>`_)
2+
* Przemysław Dąbek (`@szemek <https://github.com/szemek>`__ )

docs/_dependencies.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Not technically a Python dependency, but obviously **Highcharts Stock for Python**
3333
will not work properly if your rendering layer does not leverage Highcharts Stock.
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Highcharts Stock 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 Stock for Python** is designed to be compatible with:
4343

@@ -310,7 +310,7 @@ Hello World, and Basic Usage
310310
# EXAMPLE 1.
311311
# Using dicts
312312
my_chart.title = {
313-
'align': 'center'
313+
'align': 'center',
314314
'floating': True,
315315
'text': 'The Title for My Chart',
316316
'use_html': False,

docs/license.rst

+9-3
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@ Terms and Conditions for the Highcharts for Python Toolkit License
44

55
.. warning::
66

7-
The **Highcharts for Python** toolkit as a whole, and the **Highcharts Core for Python** library specifically,
7+
The **Highcharts for Python Toolkit** as a whole, and the **Highcharts Stock for Python** library specifically,
88
are made available subject to a *paid* commercial license. This means that while the code is open-source, in order
99
to use it you **must** purchase a license from `Highsoft A/S <https://www.highcharts.com>`__, the
1010
creators of the Highcharts JavaScript library.
1111

1212
**TO PURCHASE A LICENSE:** `https://shop.highcharts.com/ <https://shop.highcharts.com/>`__
13+
**TO APPLY FOR A PERSONAL / EDUCATIONAL LICENSE:** `https://shop.highcharts.com/contact/educational <https://shop.highcharts.com/contact/educational>`__
1314

1415
***********************************************
1516
1. Acceptance of the Terms and Conditions
@@ -27,6 +28,8 @@ Without prejudice to the limited right to download and test the Wrapper for eval
2728

2829
A Wrapper License (as defined below) or renewal thereof can only be purchased by a Licensee either already holding a License to the Software, or at the same time as purchasing such a License, as an add-on product to such License, and only by a Licensee holding an active and valid enrolment in the Highcharts Advantage plan. The purchase of, and right to use the Licensed Software shall remain governed by the terms and conditions of the License issued by Highsoft to Licensee, whether this is Highsoft Standard License Agreement, Highsoft Terms and Conditions for Subscription to Annual License to Highsoft Software, or another licensing agreement as agreed between Highsoft and Licensee, as applicable (such terms and conditions between Highsoft and Licensee hereinafter collectively referred to as the “Main Agreement”).
2930

31+
A Wrapper License (as defined below) can additionally be obtained by holding an active and valid Educational or Personal License to the Software. The right to use the Licensed Software shall remain governed by the terms and conditions of the Authorized User issued by Highsoft to Authorized User, as defined in the Educational and Personal License 1.0, (such terms and conditions between Highsoft and Authorized User hereinafter collectively referred to as the "Main Agreement").
32+
3033
These Wrapper T&Cs constitute an addendum to the Main Agreement and an integral part thereof and apply to the use of the Wrapper only.
3134

3235
In the case of any discrepancy between the Main Agreement and these Wrapper T&Cs related to the licensing of the Wrapper, these Wrapper T&Cs shall prevail.
@@ -95,13 +98,16 @@ Licensee shall not modify, delete or obscure any notices of proprietary rights o
9598
6. Wrapper Support
9699
***********************************************
97100

98-
A Wrapper License entitles Licensee to the support services and access to new Releases of the Wrapper as set out herein. While support for the Wrapper is contingent upon Licensees valid enrollment in the Highcharts Advantage plan and the annual number of hours of support available for support of the Licensed Software for each successive twelve month term during the period that Licensee is enrolled in Highcharts Advantage (each, a “Support Year”) are inclusive of the number of hours of support offered during such Support Year for the Wrapper, support of the Wrapper is not covered under Licensee’s enrollment in Highcharts Advantage, but is offered by Highsoft for a separate fee and provided separately, directly and independently by HCP.
101+
A Wrapper License entitles Licensee to the support services and access to new Releases of the Wrapper as set out herein. While support for the Wrapper is contingent upon Licensee's valid enrollment in the Highcharts Advantage plan and the annual number of hours of support available for support of the Licensed Software for each successive twelve month term during the period that Licensee is enrolled in Highcharts Advantage (each, a “Support Year”) are inclusive of the number of hours of support offered during such Support Year for the Wrapper, support of the Wrapper is not covered under Licensee’s enrollment in Highcharts Advantage, but is offered by Highsoft for a separate fee and provided separately, directly and independently by HCP. In the event that the Licensee is not enrolled in the Highcharts Advantage Plan, for example if the Main Agreement grants the Licensee a Personal or Educational License, then the Licensee shall not be entitled to the support services outlined herein.
99102

100103
All support inquiries related to the Wrapper shall be sent to [email protected] or filed at https://www.highchartspython.com.
101104

102-
Under a valid and effective Wrapper License, Licensee shall be entitled to receive from HCP:
105+
Under a valid and effective Wrapper License, Licensee shall be entitled to receive from HCP:
103106

104107
i. All new releases or updates of the Wrapper released during the applicable Advantage Period;
108+
109+
Under a valid and effective Wrapper License, contingent upon the Licensee’s valid enrollment in the Highcharts Advantage Plan and payment of applicable fees, Licensee shall be entitled to receive from HCP:
110+
105111
ii. Up to ten (10) hours of the personalized technical support for the Wrapper and/or the Licensed Software
106112
(combined) per Developer per Support Year based on the number of Developers stated in the License Statement for
107113
the License. Licensee may freely distribute its included total of ten (10) hours of personalized technical

docs/tutorials/_assembling_a_chart.rst

+1-1
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

+1-1
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}

highcharts_stock/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.5.0'
1+
__version__ = '1.6.0'

highcharts_stock/constants.py

+15-1
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,18 @@
3232
STOCK_TOOLS_INCLUDE_STR = """
3333
<link rel="stylesheet" type="text/css" href="https://code.highcharts.com/css/stocktools/gui.css">
3434
<link rel="stylesheet" type="text/css" href="https://code.highcharts.com/css/annotations/popup.css">
35-
"""
35+
"""
36+
37+
38+
RANGE_SELECTOR_BUTTON_TYPES = [
39+
'all',
40+
'millisecond',
41+
'second',
42+
'minute',
43+
'hour',
44+
'day',
45+
'week',
46+
'month',
47+
'ytd',
48+
'year',
49+
]

highcharts_stock/options/range_selector.py

+37-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
from validator_collection import validators
55

6-
from highcharts_stock import errors
6+
from highcharts_stock import errors, constants
77
from highcharts_stock.metaclasses import HighchartsMeta
88
from highcharts_stock.decorators import class_sensitive
99
from highcharts_stock.utility_classes.data_grouping import DataGroupingOptions
@@ -254,6 +254,40 @@ def title(self) -> Optional[str]:
254254
def title(self, value):
255255
self._title = validators.string(value, allow_empty = True)
256256

257+
@property
258+
def type(self) -> Optional[str]:
259+
"""The time span for the button. Accepts the following values:
260+
261+
* ``'all'``
262+
* ``'millisecond'``
263+
* ``'second'``
264+
* ``'minute'``
265+
* ``'hour'``
266+
* ``'day'``
267+
* ``'week'``
268+
* ``'month'``
269+
* ``'year'``
270+
* ``'ytd'``
271+
272+
Defaults to :obj:`None <python:None>`
273+
274+
:rtype: :class:`str <python:str>`
275+
"""
276+
return self._type
277+
278+
@type.setter
279+
def type(self, value):
280+
if not value:
281+
self._type = None
282+
else:
283+
value = validators.string(value, allow_empty = False)
284+
value = value.lower()
285+
if value not in constants.RANGE_SELECTOR_BUTTON_TYPES:
286+
raise errors.HighchartsValueError(
287+
f'type expects one of {constants.RANGE_SELECTOR_BUTTON_TYPES}. Received: "{value}"'
288+
)
289+
self._type = value
290+
257291
@classmethod
258292
def _get_kwargs_from_dict(cls, as_dict):
259293
kwargs = {
@@ -265,6 +299,7 @@ def _get_kwargs_from_dict(cls, as_dict):
265299
'preserve_data_grouping': as_dict.get('preserveDataGrouping', None),
266300
'text': as_dict.get('text', None),
267301
'title': as_dict.get('title', None),
302+
'type': as_dict.get('type', None),
268303
}
269304

270305
return kwargs
@@ -279,6 +314,7 @@ def _to_untrimmed_dict(self, in_cls = None) -> dict:
279314
'preserveDataGrouping': self.preserve_data_grouping,
280315
'text': self.text,
281316
'title': self.title,
317+
'type': self.type,
282318
}
283319

284320
return untrimmed

highcharts_stock/options/series/data/flags.py

+23-4
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,21 @@
88

99

1010
class FlagData(SingleXData):
11-
"""Data point that features a single ``x`` point with a ``title``."""
11+
"""Data point that features a single ``x`` point with a ``title`` and ``text``."""
1212

1313
def __init__(self, **kwargs):
1414
self._title = None
15-
15+
self._text = None
16+
1617
self.title = kwargs.get('title', None)
17-
18+
self.text = kwargs.get('text', None)
19+
1820
super().__init__(**kwargs)
1921

2022
@property
2123
def title(self) -> Optional[str]:
2224
"""The short text to be shown on the flag.
23-
25+
2426
:rtype: :class:`str <python:str>` or :obj:`None <python:None>`
2527
"""
2628
return self._title
@@ -32,6 +34,21 @@ def title(self, value):
3234
else:
3335
self._title = validators.string(value, coerce_value = True)
3436

37+
@property
38+
def text(self) -> Optional[str]:
39+
"""The longer text to be shown in the flag's tooltip.
40+
41+
:rtype: :class:`str <python:str>` or :obj:`None <python:None>`
42+
"""
43+
return self._text
44+
45+
@text.setter
46+
def text(self, value):
47+
if not value:
48+
self._text = None
49+
else:
50+
self._text = validators.string(value, coerce_value = True)
51+
3552
@classmethod
3653
def from_list(cls, value):
3754
if not value:
@@ -116,13 +133,15 @@ class from a Highcharts Javascript-compatible :class:`dict <python:dict>` object
116133
'x': as_dict.get('x', None),
117134

118135
'title': as_dict.get('title', None),
136+
'text': as_dict.get('text', None),
119137
}
120138

121139
return kwargs
122140

123141
def _to_untrimmed_dict(self, in_cls = None) -> dict:
124142
untrimmed = {
125143
'title': self.title,
144+
'text': self.text,
126145
'x': self.x,
127146

128147
'dataLabels': self.data_labels,

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ classifiers = [
5959

6060
requires-python = ">= 3.10"
6161
dependencies = [
62-
"highcharts-core>=1.5.0",
62+
"highcharts-core>=1.6.0",
6363
"esprima>=4.0.1",
6464
"validator-collection>=1.5.0",
6565
"requests>=2.31.0"

requirements.dev.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ validator-collection==1.5.0
1414
anthropic==0.3.11
1515
dill==0.3.7
1616
openai==0.28.0
17-
highcharts-core>=1.5.0
17+
highcharts-core>=1.6.0

requirements.travis.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ sphinx-tabs==3.4.1
1313
tox==4.4.6
1414
requests==2.31.0
1515
validator-collection==1.5.0
16-
highcharts-core>=1.5.0
16+
highcharts-core>=1.6.0

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
esprima==4.0.1
22
requests==2.31.0
33
validator-collection==1.5.0
4-
highcharts-core>=1.5.0
4+
highcharts-core>=1.6.0

0 commit comments

Comments
 (0)