Skip to content

Commit

Permalink
fixing density map toggle for short cadence data for HAT-P-7 notebook (
Browse files Browse the repository at this point in the history
  • Loading branch information
bmorris3 authored Dec 11, 2023
1 parent 1a3c704 commit 7e561d3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion lcviz/plugins/frequency_analysis/frequency_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,12 @@ def _update_periodogram(self, *args):
self.plot._update_data('periodogram',
x=getattr(per, self.xunit_selected),
y=per.power.value)
self.plot.update_style('periodogram', line_visible=True, markers_visible=False)
self.plot.update_style(
'periodogram',
density_map=False,
line_visible=True,
markers_visible=False
)
self._update_periodogram_labels(per)
else:
self.plot.update_style('periodogram', visible=False)

0 comments on commit 7e561d3

Please sign in to comment.