Is there any method to append the chart with new series? Unlike `appendData` which seems to append data points on existing series meanwhile `updateSeries ` will overwrite the existing series. ``` apexChart.appendData([{ name: l, data: point, }]); ``` 