classificationMethod property
The renderer's classification method.
RendererClassificationMethod.manual if an error occurs.
Implementation
RendererClassificationMethod get classificationMethod {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ClassBreaksRenderer_getClassificationMethod(
_handle,
errorHandler,
);
});
return RendererClassificationMethod._fromCoreValue(
coreValue,
);
}