Skip to content

Commit f5da4ab

Browse files
committed
Potential fix for #71
1 parent f8383f4 commit f5da4ab

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ post, it can be solved by explicitly install the `matplotlib` dependency `dvipng
5858

5959
### Update History
6060

61+
##### 0.29.1
62+
* Potential bug fix for `log_space` feature.
63+
64+
6165
##### 0.29.0
6266
* Warning the user if `configure` is called multiple times.
6367
* Allowing parameters to be a number when calling `get_latex_table`

chainconsumer/chainconsumer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ChainConsumer(object):
1919
2020
"""
2121

22-
__version__ = "0.29.0"
22+
__version__ = "0.29.1"
2323

2424
def __init__(self):
2525
logging.basicConfig(level=logging.INFO)

chainconsumer/plotter.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,6 +1002,8 @@ def _get_figure(self, all_parameters, flip, figsize=(5, 5), external_extents=Non
10021002
ax.xaxis.set_major_formatter(formatter)
10031003
else:
10041004
ax.xaxis.set_major_locator(LogLocator(numticks=max_ticks))
1005+
else:
1006+
ax.set_xticks([])
10051007
if display_y_ticks:
10061008
if diagonal_tick_labels:
10071009
_ = [l.set_rotation(45) for l in ax.get_yticklabels()]
@@ -1011,6 +1013,8 @@ def _get_figure(self, all_parameters, flip, figsize=(5, 5), external_extents=Non
10111013
ax.yaxis.set_major_formatter(formatter)
10121014
else:
10131015
ax.yaxis.set_major_locator(LogLocator(numticks=max_ticks))
1016+
else:
1017+
ax.set_yticks([])
10141018
if i != j or not plot_hists:
10151019
ax.set_ylim(extents[p1])
10161020
elif flip and i == 1:

0 commit comments

Comments
 (0)