I am currently working with a spline chart:
this.chart = {
chart: {
type: 'spline',
zoomType: 'x',
animation: true,
marginRight: 10,
renderTo: chartId
},
I am wondering how I can implement adding new data (new lines) after the user clicks on a button.
private addingAxisData() {
// Any ideas on what code should go here?
}