First of all, I'm just getting into uibuilder, and I'm not great with html or javascript, but I think I have a question that will be reasonably simple for someone. I'm using the example @ Creating Charts with uibuilder and ApexCharts (flow) - Node-RED to try to input data from a SQL database into a bar chart. Working with this example, I've been able to get an array of numbers into the donut chart (dseries data), but I cannot figure out how to get the same array of numbers in the (series: data) for the bar chart.
I'm using this script for the donut chart.
uibuilder.onChange('msg', function (newVal) {
vueApp.dseries = newVal.payload //.push(newVal.payload)
vueApp.dseries.push()
uibuilder.send(msg)
})
Thanks in advance!