unregisterTappable method
void
unregisterTappable(
- ChartBehavior<
D> behavior
inherited
Tells the chart that this behavior no longer responds to tap events.
Implementation
void unregisterTappable(ChartBehavior<D> behavior) {
final role = behavior.role;
if (role != null && _behaviorTappableMap[role] == behavior) {
_behaviorTappableMap.remove(role);
}
}