MCPcopy Create free account
hub / github.com/angular-rust/ux-charts / is_interactive

Method is_interactive

src/basechart.rs:554–556  ·  view source on GitHub ↗

Whether the chart is interactive. This property returns `false` if the chart is animating or there are no channel to draw.

(&self)

Source from the content-addressed store, hash-verified

552 /// This property returns `false` if the chart is animating or there are no
553 /// channel to draw.
554 pub fn is_interactive(&self) -> bool {
555 !self.is_animating() && self.channels.borrow().len() != 0
556 }
557
558 /// Disposes of resources used by this chart. The chart will become unusable
559 /// until [draw] is called again.

Callers 3

legend_item_clickMethod · 0.80
legend_item_mouse_outMethod · 0.80

Calls 1

is_animatingMethod · 0.80

Tested by

no test coverage detected