The following simple example doesn't render..
let table = this.anychart.data.table(); table.addData(this.series); // map the data let mapping = table.mapAs({x: 'asofdate', value: 'price'}); // chart type this.chart = this.anychart.stock(); // set the series var series = this.chart.plot(0).line(mapping); series.name("Stock Price"); this.chart.title('Stock Price'); this.chart.container(this.$el); this.chart.draw();