canTranslate abstract method

bool canTranslate(
  1. num domainValue
)
inherited

Tests a domainValue to see if the scale can translate it.

Returns true if the scale can translate the given domainValue. (Ex: linear scales can translate any number, but ordinal scales can only translate values previously passed in.)

Implementation

bool canTranslate(D domainValue);