File tree Expand file tree Collapse file tree 5 files changed +18
-6
lines changed Expand file tree Collapse file tree 5 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
1
2
+ Release 1.8.2
3
+ =========================================
4
+
5
+ * **BUGFIX: ** Added missing support for ``'areaMarker' `` legend symbol.
6
+ * **DOCS: ** Fixed some typos (courtesy of @JulienBacquart).
7
+
8
+ ----
9
+
2
10
Release 1.8.1
3
11
=========================================
4
12
Original file line number Diff line number Diff line change 4
4
* Byron Cook (`@ByronCook <https://github.com/ByronCook >`__)
5
5
* karlacio (`@karlacio <https://github.com/karlacio >`__)
6
6
* Max Dugan Knight (`@maxduganknight <https://github.com/maxduganknight >`__)
7
+ * Julien Bacquart (`@JulienBacquart <https://github.com/JulienBacquart >`__)
Original file line number Diff line number Diff line change 1
1
########################################################
2
- Using Highcharts Core for Python with Pandas
2
+ Working with Data in Highcharts for Python
3
3
########################################################
4
4
5
5
.. contents ::
@@ -8,7 +8,7 @@ Using Highcharts Core for Python with Pandas
8
8
9
9
-------------------
10
10
11
- The **Highcharts for Python Toolkit ** is a data *visualizaiton * library.
11
+ The **Highcharts for Python Toolkit ** is a data *visualization * library.
12
12
That means that it is designed to let you visualize the data that you
13
13
or your users are analyzing, rather than to do the analysis itself. But
14
14
while there are better tools to actually crunch the numbers,
Original file line number Diff line number Diff line change 1
- __version__ = '1.8.1 '
1
+ __version__ = '1.8.2 '
Original file line number Diff line number Diff line change @@ -495,7 +495,8 @@ def label(self, value):
495
495
@property
496
496
def legend_symbol (self ) -> Optional [str ]:
497
497
"""The type of legend symbol to render for the series. Accepts either
498
- ``'lineMarker'`` or ``'rectangle'``. Defaults to ``'rectangle'``.
498
+ ``'lineMarker'``, ``'areaMarker'``, or ``'rectangle'``. Defaults to
499
+ ``'rectangle'``.
499
500
500
501
:rtype: :class:`str <python:str>`
501
502
"""
@@ -510,9 +511,11 @@ def legend_symbol(self, value):
510
511
value = value .lower ()
511
512
if value == 'linemarker' :
512
513
value = 'lineMarker'
513
- if value not in ['lineMarker' , 'rectangle' ]:
514
+ if value == 'areamarker' :
515
+ value = 'areaMarker'
516
+ if value not in ['lineMarker' , 'areaMarker' , 'rectangle' ]:
514
517
raise errors .HighchartsValueError (f'legend_symbol expects either '
515
- f'"lineMarker" or "rectangle". '
518
+ f'"lineMarker", "areaMarker", or "rectangle". '
516
519
f'Received: "{ value } ".' )
517
520
self ._legend_symbol = value
518
521
You can’t perform that action at this time.
0 commit comments