The maximum value of the domain.
The minimum value of the domain.
Represents an empty domain.
Returns the domain as an array of two elements, first min then max.
const domain = _info.data.cols[ 1 ].domain.toArray();
const scale = d3.scaleLinear().domain( domain ).range( [ 0, 100 ] );
The domain as an array of [min, max].
Represents a value domain with a minimum and maximum value. Used in a continuous slot to define the value range of values in that slot. See also Slot.domain.