[BUG] Graduated bar with custom size not filling up

When using daq.GraduatedBar, if I set size=some_value, then the bar does not fill with color, as you can see in the picture below.

I tested with vertical=False too, and the same happens.

bugGraduatedbar

Code:

left_bar = daq.GraduatedBar(
        min=0,
        max=100,
        value=lateral_positioning["Left"],
        showCurrentValue=True,
        color="lightblue",
        vertical=True,
        label="Left",
    )
    
    center_bar = daq.GraduatedBar(
        min=0,
        max=100,
        value=lateral_positioning["Center"],
        showCurrentValue=True,
        color="lightblue",
        vertical=True,
        label="Center",
    )
    
    right_bar = daq.GraduatedBar(
        min=0,
        max=100,
        value=lateral_positioning["Right"],
        showCurrentValue=True,
       color="lightblue",
        vertical=True,
        label="Right",
        size=200
    )