domainOverride property
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;
Implementation
@override
set domainOverride(NumericExtents? domainMaxExtent) {
_domainInfo.domainOverride = domainMaxExtent;
}