From f808b73a5d937d6ed4ee444e5c395f1e24d30c09 Mon Sep 17 00:00:00 2001 From: DarkPhoenix Date: Mon, 20 May 2019 07:56:04 +0300 Subject: [PATCH] Add axis labels --- gui/graphFrame.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gui/graphFrame.py b/gui/graphFrame.py index e01d1544e..1b30d3168 100644 --- a/gui/graphFrame.py +++ b/gui/graphFrame.py @@ -316,6 +316,8 @@ class GraphFrame(wx.Frame): chosenY = handle break + self.subplot.set(xlabel=view.xDef.axisLabel, ylabel=view.yDefs[chosenY].axisLabel) + for fit in self.fits: try: xs, ys = view.getPlotPoints(fit, extraInputs, xRange, 100, chosenY)