remove method

void remove(
  1. ChartController ctrl
)

Remove a controller from the group and stop synchronization.

Implementation

void remove(ChartController ctrl) {
  if (_disposed) return;
  if (_controllers.remove(ctrl)) {
    _detach(ctrl);
  }
}