Ui gauge type level not showing

hi guys, I have this simple demo flow, but I can't get ui-gauge of type:level to work. However, the type:gauge works just fine - as expected.
am I doing something wrong or misunderstood the settings?

[
    {
        "id": "c93ec0f3.64b248",
        "type": "tab",
        "label": "Flow 1",
        "disabled": false,
        "info": ""
    },
    {
        "id": "1a2a1fc8.1ef2f",
        "type": "inject",
        "z": "c93ec0f3.64b248",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "50",
        "payloadType": "num",
        "x": 170,
        "y": 140,
        "wires": [
            [
                "b3c96660.7443a"
            ]
        ]
    },
    {
        "id": "d8ef78de.c2d998",
        "type": "inject",
        "z": "c93ec0f3.64b248",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "30",
        "payloadType": "num",
        "x": 170,
        "y": 200,
        "wires": [
            [
                "b3c96660.7443a"
            ]
        ]
    },
    {
        "id": "a61b49ee.13449",
        "type": "inject",
        "z": "c93ec0f3.64b248",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "15",
        "payloadType": "num",
        "x": 170,
        "y": 260,
        "wires": [
            [
                "b3c96660.7443a"
            ]
        ]
    },
    {
        "id": "b3c96660.7443a",
        "type": "ui_gauge",
        "z": "c93ec0f3.64b248",
        "name": "",
        "group": "fc08b77d.62707",
        "order": 4,
        "width": 0,
        "height": 0,
        "gtype": "wave",
        "title": "",
        "label": "L",
        "format": "{{value|number:1}}L",
        "min": 0,
        "max": "50",
        "colors": [
            "#00b500",
            "#e6e600",
            "#ca3838"
        ],
        "seg1": "",
        "seg2": "",
        "x": 370,
        "y": 200,
        "wires": []
    },
    {
        "id": "fc08b77d.62707",
        "type": "ui_group",
        "name": "TEST",
        "tab": "8cb81d95.04761",
        "order": 2,
        "disp": true,
        "width": "6",
        "collapse": false
    },
    {
        "id": "8cb81d95.04761",
        "type": "ui_tab",
        "name": "Home",
        "icon": "SONOFFTH",
        "order": 5,
        "disabled": false,
        "hidden": false
    }
]

It always results in this:

... and 'm sorry if this is not the right place to ask this.

Thank you,
N.

Just remove the "L" from the value format

{{value | number:1}}

It takes the unit from unit field

Wow, so simple :flushed:. Thank you so much for helping!
N.

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