effectiveDataPointRatio property
double
get
effectiveDataPointRatio
Implementation
double get effectiveDataPointRatio {
if (dataPointCount <= 0) return 0;
return (effectiveDataPointCount / dataPointCount).clamp(0, 1).toDouble();
}