QuantitativeComparisonChart constructor
QuantitativeComparisonChart({})
Implementation
QuantitativeComparisonChart({
required String label,
required this.primaryValue,
required this.secondaryValue,
this.primaryLabel = '',
this.secondaryLabel = '',
String unit = '',
bool enableToolTip = false,
this.themeData,
this.numberFormat, // Add this
}) : super(
label: label,
value: primaryValue,
unit: unit,
enableTooltip: enableToolTip);