maxHintScaleFactor property

  1. @protected
double? maxHintScaleFactor

The amount the domain axis will be scaled for the start of the hint.

A value of 1.0 means the viewport is completely zoomed out (all domains are in the viewport). If a value is provided, it cannot be less than 1.0.

By default maxHintScaleFactor is not set.

Implementation

@protected
double? get maxHintScaleFactor => _maxHintScaleFactor;
void maxHintScaleFactor=(double? maxHintScaleFactor)

Implementation

set maxHintScaleFactor(double? maxHintScaleFactor) {
  assert(maxHintScaleFactor != null && maxHintScaleFactor >= 1.0);

  _maxHintScaleFactor = maxHintScaleFactor;
}