score:0

In general, without code it is really hard to find issue, just copy your 'options on the fly' which reproduce issue, please.

However, most probably you are trying to add series for axis, which doesn't exists. For example:

yAxis: { },
series: [{ yAxis: 1 }] <-- obviously there is only one yAxis

score:0

export class xyzComponent implements OnInit {
  highcharts = Highcharts;
  chart;
  chartCallback;
  title = 'myHighchart';
  chartConstructor = "chart";
  chartOptions: {};

ngOnInit() {
    this.chartOptions = {
        chart: {
            type: "spline"
        },
        title: {
            text: 'Average Vegetation and Soil Moisture Index'
        },
    }
}

}

it's for Angualar 

Related Query

More Query from same tag