MCPcopy Create free account
hub / github.com/donkeyteethUX/iced_plot / visible_highlighted_points

Method visible_highlighted_points

src/plot_widget.rs:1138–1147  ·  view source on GitHub ↗
(
        &self,
    )

Source from the content-addressed store, hash-verified

1136 if !self.controls_overlay_open {
1137 return None;
1138 }
1139
1140 Some(
1141 container(self.controls.view_controls_overlay_panel(has_legend))
1142 .padding(8.0)
1143 .style(|theme| self.update_style(theme).controls_panel)
1144 .into(),
1145 )
1146 }
1147
1148 fn view_tick_labels(&self) -> Option<Element<'_, PlotUiMessage>> {
1149 if self.x_ticks.is_empty() && self.y_ticks.is_empty() {
1150 return None;

Calls

no outgoing calls

Tested by

no test coverage detected