SymlogScale constructor
SymlogScale({})
Creates a symlog scale with the given parameters.
Implementation
SymlogScale({
List<double>? domain,
List<double>? range,
bool clamp = false,
double constant = 1,
}) : _domain = domain ?? [-1, 1],
_range = range ?? [0, 1],
_clamp = clamp,
_constant = constant;