Pieces for VS Code
changeChart(){
if(this.chartType == "bar"){
this.chartType = "line";
} else if(this.chartType == "line") {
this.chartType = "radar";
} else if(this.chartType == "radar") {
this.chartType = "bar";
} else {
this.chartType = "area";
}
this.loadChartOptions();
//this.loadJSONChart(this.chartData);
}