Whether the chart is interactive. This property returns `false` if the chart is animating or there are no channel to draw.
(&self)
| 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. |
no test coverage detected