updateTicks method

void updateTicks()

Request update ticks from tick provider and update the painted ticks.

Implementation

void updateTicks() {
  _updateProvidedTicks();
  if (_componentBounds != null) {
    _updateProvidedTickWidth(
        _componentBounds!.width, _componentBounds!.height);
  }
  _updateAxisTicks();
}