Skip to content

Commit

Permalink
Fix plot labels
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyfothergill authored Apr 8, 2022
1 parent 4d5e791 commit 8257aa4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gixstapose/diffractometer.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,8 +334,8 @@ def plot(self):
order=1,
)
ax.imshow(dp, extent=[-extent, extent, -extent, extent])
ax.set_xlabel(r"$q_{xx} (1/\AA)$", fontsize=20)
ax.set_ylabel(r"$q_{yy} (1/\AA)$", fontsize=20)
ax.set_xlabel(r"$q_{xy} (1/\AA)$", fontsize=20)
ax.set_ylabel(r"$q_{z} (1/\AA)$", fontsize=20)
ticks = ticks = [
-round(extent, 2),
-round(extent / 2, 2),
Expand Down

0 comments on commit 8257aa4

Please sign in to comment.