You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sg.Text(' Title of y-axis ', size=(13,1)), sg.InputText(key='ylabel',size=(15,1))],
65
65
[sg.Text('Enter graph Width')],
66
66
[sg.Text(' ')],
67
67
[sg.Text('Select the X axis'), sg.Text(' Select the y axis(s)')],
68
-
[sg.Listbox(['Load CSV to See available headers'], key='xheaders', size=(30,6)),sg.Listbox(['Load CSV to See available headers'],select_mode='multiple',key='yheaders', size=(30,6))]]
68
+
[sg.Listbox(['Load CSV to See available headers'], key='xheaders', size=(30,6)),sg.Listbox(['Load CSV to See available headers'],select_mode='multiple',key='yheaders', size=(30,6)), sg.Checkbox('Maintain ASR',default=False,key='ASR')]]
69
69
70
70
#general layout bringing all the smaller frames together
71
71
layout= [[sg.Text('use open to load the csv')],
@@ -97,11 +97,7 @@ def Main():
97
97
#opens up a window to choose a file with the extension .csv
98
98
filename=sg.PopupGetFile('filename to open', no_window=True, file_types=(("CSV Files","*.csv"),))
0 commit comments