Any one know if a way to limit the number of digits are displayed after the decimal on these guage cards?
It might not work in your use case, but I've ended up just creating a new dataset with the final result value for this card type. Depending on how I want to round I either use the Round(), Floor() or Ceiling() function.
Ex: I want 0.072234 (7.2234%) to get rounded up to 7.3%.
CEILING(0.072234 * 1000) / 1000
Hope that helps,
Valiant