Skip to content
Snippets Groups Projects

Make points for Event DS plots show up

Merged Kien Le requested to merge bug-#263-event_ds_not_plotted into develop
1 unresolved thread
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
@@ -266,8 +266,12 @@ class Plotting:
:param ax: axes to plot channel
:return ax: axes of the channel
"""
# Set the color to white by default
color = '#000000'
# Set the default color to black or white depending on the background
# color of the plot
if self.main_window.color_mode == 'B':
color = '#FFFFFF'
elif self.main_window.color_mode == 'W':
color = '#000000'
if chan_db_info['valueColors'] not in [None, 'None', '']:
color = chan_db_info['valueColors'].strip()[6:]
x_list = c_data['times']
Loading