formatValue(value) {
        return this.props.unit === 'pct'
            ? `${value.toFixed(2).replace('.', ',')}%`
            : value;
    }