I'm having the same problem. In my case I'm reading the values from a modbus get node, when I navigate to some tab and navigate back again to the previous tab the chart x axis show only 00:00:00 values and the no line, here is a simplified version of the flow that shows the problem
[{"id":"b06ba29b.716118","type":"tab","label":"Flow 2","disabled":false,"info":""},{"id":"85853421.561d4","type":"inject","z":"b06ba29b.716118","name":"timer","topic":"","payload":"","payloadType":"date","repeat":"10","crontab":"","once":false,"onceDelay":0.1,"x":90,"y":80,"wires":[["9b097e70.d9a468"]]},{"id":"9b097e70.d9a468","type":"function","z":"b06ba29b.716118","name":"Temperatura de saida do ar","func":"msg.payload = { \n 'fc': 3,\n 'unitid': 1,\n 'address': 260,\n 'quantity': 1 \n} \nreturn msg;","outputs":1,"noerr":0,"x":310,"y":100,"wires":[["c3e7f47c.687488"]]},{"id":"c3e7f47c.687488","type":"modbus-flex-getter","z":"b06ba29b.716118","name":"Modbus/TCP Get","showStatusActivities":true,"showErrors":true,"logIOActivities":false,"server":"2c330275.c05d1e","useIOFile":false,"ioFile":"","useIOForPayload":false,"x":580,"y":80,"wires":[["60ebfc0b.2c8304"],[]]},{"id":"60ebfc0b.2c8304","type":"function","z":"b06ba29b.716118","name":".[0]/10","func":"msg.payload = msg.payload[0] / 10;\nreturn msg;","outputs":1,"noerr":0,"x":770,"y":80,"wires":[["60863aaf.985db4"]]},{"id":"60863aaf.985db4","type":"change","z":"b06ba29b.716118","name":"","rules":[{"t":"set","p":"topic","pt":"msg","to":"Saída","tot":"str"}],"action":"","property":"","from":"","to":"","reg":false,"x":940,"y":30,"wires":[["f9b48201.c84c98"]]},{"id":"f9b48201.c84c98","type":"ui_chart","z":"b06ba29b.716118","name":"","group":"1029c925.810a8f","order":1,"width":0,"height":0,"label":"Saída e retorno do ar (℃)","chartType":"line","legend":"true","xformat":"HH:mm:ss","interpolate":"linear","nodata":"","dot":false,"ymin":"0","ymax":"40","removeOlder":1,"removeOlderPoints":"","removeOlderUnit":"3600","cutout":0,"useOneColor":false,"colors":["#b4201f","#2711d4","#ff7f0e","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5"],"useOldStyle":false,"outputs":1,"x":1180,"y":50,"wires":[[]]},{"id":"2c330275.c05d1e","type":"modbus-client","z":"","name":"Mecalor","clienttype":"tcp","bufferCommands":true,"stateLogEnabled":false,"tcpHost":"172.16.0.201","tcpPort":"502","tcpType":"DEFAULT","serialPort":"/dev/ttyUSB","serialType":"RTU-BUFFERD","serialBaudrate":"9600","serialDatabits":"8","serialStopbits":"1","serialParity":"none","serialConnectionDelay":"100","unit_id":"1","commandDelay":"1","clientTimeout":"5000","reconnectTimeout":"5000"},{"id":"1029c925.810a8f","type":"ui_group","z":"","name":"Default","tab":"daa5b4e8.6d38a8","disp":true,"width":"6","collapse":false},{"id":"daa5b4e8.6d38a8","type":"ui_tab","z":"","name":"Teste","icon":"dashboard","disabled":false,"hidden":false}]
Here a screenshot before and after the problem
Redeploy doens't fix the problem, but if I send []
to the chart, it starts to plot correctly again