apexcharts / ng-apexcharts

ng-apexcharts is an implementation of apexcharts for angular. It comes with one simple component that enables you to use apexcharts in an angular project.
MIT License
324 stars 81 forks source link

support angular 19 #366

Open damingerdai opened 2 days ago

RichardBoyder commented 2 days ago

Hi is there any answer on this ? or estimated time frame for this ?

thijsvm commented 45 minutes ago

Not the best solution but for now I've modified the package.json of my angular project like this:

{
  //...
  "dependencies": {
    // ...
    "apexcharts": "^3.49.1",
    "ng-apexcharts": "^1.11.0",
  },
  "overrides": {
    "ng-apexcharts": {
      "@angular/common": "^19.0.0",
      "@angular/core": "^19.0.0"
    }
  }
}

I'm not using the latest version of ng-apexcharts because I also have this issue: https://github.com/apexcharts/ng-apexcharts/issues/367