use of org.knime.base.util.coordinate.LogarithmicMappingMethod in project knime-core by knime.
the class BasicPlotter method isLogarithmic.
private boolean isLogarithmic(final Axis axis) {
Coordinate coordinate = axis.getCoordinate();
MappingMethod mapMethod = coordinate.getActiveMappingMethod();
if (mapMethod != null && mapMethod instanceof LogarithmicMappingMethod) {
return true;
}
return false;
}
Aggregations