minValue property

double minValue

The minimum value of the first class break if the renderer uses continuous class breaks.

This will set the minimum value of the first class break in a renderer containing continuous class breaks where each ClassBreak does not define a minimum value. In this case the minimum value of each break will be the maximum value of the preceding one. As the first class break has no class break before it, this value will define its minimum.

Implementation

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

Implementation

set minValue(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ClassBreaksRenderer_setMinValue(
        _handle, value, errorHandler);
  });
}