Home Forums Chart Support Angular 10 update for appliaction generates a warning for canvasjs library Reply To: Angular 10 update for appliaction generates a warning for canvasjs library

#29825

@mlimaye,

As you are using a non-ECMAScript Module file for your Angular application, whitelisting CanvasJS should work fine in your case. Please refer to the code below for adding a specific CommonJS dependency in the angular.json file:

"architect": {
  "build": {
    "builder": "@angular-devkit/build-angular:browser",
    "options": {
      "allowedCommonJsDependencies": ["assets/canvasjs/*"]
    }
  }
}

You can also refer to this Stack Overflow thread for more information on whitelisting CommonJS dependencies.

Please take a look at this sample project for a working example with sample code on integrating CanvasJS with Angular.

CanvasJS basic column chart in Angular


Shashi Ranjan
Team CanvasJS