To display 3 decimals in a label I’ve figured out following code: float cDT1 = 0.f; label_Delay1->setText(juce::String::toDecimalStringWithSignificantFigures(cDT1, (int)setDecimals(cDT1) + 3), juce::NotificationType(0)); float RootComponent::setDecimals(float Deci) { int tInt = (int)Deci; std::string sDec = std::to_string(tInt); int sLen = sDec.length(); return sLen; } It works fine except when Deci = 10, 100, 1000 etc. Only then 4 decimals are displayed. I can’t figure out why. Kare...