domainOverride property

  1. @override
NumericExtents? domainOverride
override

Overrides the domain extent if set, null otherwise.

Overrides the extent of the actual data to lie about the range of the data so that panning has a start and end point to go between beyond the received data. This allows lazy loading of data into the gaps in the expanded lied about areas.

Implementation

@override
NumericExtents? get domainOverride => _domainInfo.domainOverride;
  1. @override
void domainOverride=(NumericExtents? domainMaxExtent)
override

Implementation

@override
set domainOverride(NumericExtents? domainMaxExtent) {
  _domainInfo.domainOverride = domainMaxExtent;
}