Dynamically adding of Series in Apex Chart
问题 I had result that was pulled from the database, and each item in the result is a series in a single chart. I was able to update that chart but the last element of the result only shows in the chart. What could be the possible problem for this one? for (i = 0; i < objResult.length; i++) { temperatureRender.updateSeries([{ name: objResult[i].TankName, data: objResult[i].TankLogs }]); } It displays the Series but only the last series that i've added. 回答1: The updateSeries method overwrites the