Skip to content
Snippets Groups Projects
Commit 9fc21fce authored by ulc0011's avatar ulc0011
Browse files

ENH: Heatmap sending func label value as string to csv edit #3

parent 27795e56
No related branches found
No related tags found
No related merge requests found
......@@ -338,7 +338,7 @@ class Window(QtWidgets.QDialog):
csv_vals_edit_dialog = QtWidgets.QDialog()
ui = csv_vals_edit.Ui_csv_vals_edit()
ui.setupUi(csv_vals_edit_dialog, reg, self.plot_data[1]["x_label_name"], list(self.k)[idy],
self.plot_data[1]["func_label_name"], self.ky[idx], (self.plot_data[0]['category'], self.plot_data[0]['arg']))
self.plot_data[1]["func_label_name"], str(self.ky[idx]), (self.plot_data[0]['category'], self.plot_data[0]['arg']))
csv_vals_edit_dialog.show()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment