Is there a nicer way to do this with UI_Table

Hi,

have you took node-red-node-ui-table (aka. Tabulator) into account. The data will have to be formatted slightly different and you will have to define a time formatted column (easy possible via msg.ui_control).

But in the end very versatile with possibility to graphically visualize your the price via a customized progress formatter, filtering sorting and a lot of other things

Let me know if you need any help with that.

msg.payload =[
    {
        "Time":"13:01",
        "Price":17
    }, {
        "Time":"13:06",
        "Price":24
    }, {
        "Time":"13:11",
        "Price":15
    }, {
        "Time":"13:16",
        "Price":16
    }, {
        "Time":"13:21",
        "Price":16
    }, {
        "Time":"13:26",
        "Price":18
    }
];
return msg;
1 Like