How to style the tspan element of Gauge

Displaying a value format from the payload the value itself is displayed below the gauge as a text.
It is formated with value.
I would like that the value is not displayed. Is there a way to style the tspan element?

CSS override

<style>
    /* remove all texts*/
    .gauge-no-text text{
       /* display:none;*/
    }
    /* remove only value field*/
    .gauge-no-text text:first-of-type{
        /*display:none;*/
    }
</style>

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.