normalizationTotal property

double normalizationTotal

The renderer's normalization total.

This field is the normalization total when ClassBreaksRenderer.normalizationType is set to RendererNormalizationType.byPercentOfTotal. This means that the minimum and maximum values in each class break are defined as percentages of this total.

Implementation

double get normalizationTotal {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ClassBreaksRenderer_getNormalizationTotal(
        _handle, errorHandler);
  });
}
void normalizationTotal=(double value)

Implementation

set normalizationTotal(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClassBreaksRenderer_setNormalizationTotal(
        _handle, value, errorHandler);
  });
}