Skip to content

Commit

Permalink
Flip the Heatmap 2D plot to match the axes
Browse files Browse the repository at this point in the history
  • Loading branch information
MBartkowiakSTFC committed Oct 11, 2024
1 parent d69b75f commit 14f2458
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MDANSE_GUI/Src/MDANSE_GUI/Tabs/Plotters/Heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,9 +186,9 @@ def plot(
primary_axis_number = number
all_numbers = [0]
if primary_axis_number == 0:
all_datasets = [dataset._data]
else:
all_datasets = [dataset._data.T]
else:
all_datasets = [dataset._data]
transposed = True
all_labels = [dataset._name]
limits = []
Expand Down

0 comments on commit 14f2458

Please sign in to comment.