How to change: space between radio-button and label / font-size of gauges?

Hi @HDFready

So far, the only way I’ve made it work is to set the style in the label and the scale. Here is an example:

gauge_style

daq.Gauge(      
        color={'ranges':{'red':[0,2.5],'green':[2.5,10]}},
        value=2,
        label={'label':'FUEL', 'style':{'font-size':'30px'}},
        max=10,
        min=0,
        scale={'custom':{'0':{'label':'E', 'style':{'font-size':'30px'}},
                         '5':{'label':'1/2', 'style':{'font-size':'30px'}},
                         '10':{'label':'F', 'style':{'font-size':'30px'}},
                        }
              }
    ),

(Edit - posted a better example)