Skip to content

Commit

Permalink
Fixed corrected heading solution type in hover text.
Browse files Browse the repository at this point in the history
  • Loading branch information
adamshapiro0 committed May 8, 2024
1 parent 078f2f7 commit 262bc38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/fusion_engine_client/analysis/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -2005,7 +2005,7 @@ def plot_heading_measurements(self):
marker={'color': 'green'},
hovertemplate='<b>Time</b>: %{x:.3f} sec (%{customdata:.3f} sec)'
'<br><b>Solution</b>: %{text}',
text=[str(SolutionType(s)) for s in raw_heading_data.solution_type],
text=[str(SolutionType(s)) for s in heading_data.solution_type],
name='Corrected Heading Solution Type'
),
row=3, col=1
Expand Down

0 comments on commit 262bc38

Please sign in to comment.