node_modules/angular2-google-chart/directives/angular2-google-chart.directive.ts(33,15): error TS7006: Parameter 'chartOptions' implicitly has an 'any' type #66
Getting this error with all parameters declared with drawGraph() 👍
and another error with this statement let msg;
I got a solution for this issue.
explicitly declare all parameters like drawGraph(chartOptions:any, chartType:any, chartData:any, ele:any) at line number 33
and statement let msg:any; at line number 47
Getting this error with all parameters declared with drawGraph() 👍 and another error with this statement let msg;
I got a solution for this issue.
explicitly declare all parameters like drawGraph(chartOptions:any, chartType:any, chartData:any, ele:any) at line number 33 and statement let msg:any; at line number 47