Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Anuglar 12 support #140

Open
matthewtquinn1 opened this issue Jan 25, 2022 · 10 comments
Open

Anuglar 12 support #140

matthewtquinn1 opened this issue Jan 25, 2022 · 10 comments

Comments

@matthewtquinn1
Copy link

matthewtquinn1 commented Jan 25, 2022

Hi @AyanBhadury,

I read through some of the other issues (open and closed), and found this one in particular that you advise to update angular-fusioncharts to 3.2.0. #114 (comment)

I have now done this, however I am now seeing these warnings:

image

From this I have two questions:

  • When will this repo be updated to support Angular 12?
  • Is there documentation or a readme for which version of angular-fusioncharts AND fusioncharts I should have when running my app on Angular 12?

We were also seeing issues with angular-fusioncharts not accepting certain properties, e.g. the license key that is required when upgrading fusioncharts: (i.e. FusionCharts.options.license). If we upgrade fusioncharts to 3.16 or above, then we still see this issue:

image

Current setup:

  • Angular: 12.2.15
  • angular-fusioncharts: 3.2.0
  • fusioncharts: 3.15.2

Thanks.

@AyanBhadury
Copy link

@matthewtquinn1 here is the summary of your issues
1- you can bypass the warnings that will not break your angular app.

2- It seems you are not using fusioncharts 3.15.2 because it's looking for license key which is supported in version 3.15.3 onwards, in the browser console please type FusionCharts.version for version details.

@matthewtquinn1
Copy link
Author

1 - OK I'll ignore that for now.

2 - If I upgrade to 3.15.3 or higher then I will receive this error.

@AyanBhadury
Copy link

Right if you upgrade to 3.15.3 and up you will need licence key to remove the trail mark.

FusionCharts.options['license']({
key: '',
creditLabel: false,
});

@matthewtquinn1
Copy link
Author

I have now updated to the version you recommended, and am receiving two different issues:

The FusionCharts.options object does not contain a definition for license.

If I use the example you provided (not using dot notation to set the key), then I see that the chart still has the watermark on it:

image

@AyanBhadury
Copy link

It seems you are not using a different fusioncharts version, in the web browser console please type FusionCharts.version for version details.

@matthewtquinn1
Copy link
Author

matthewtquinn1 commented Jan 26, 2022

Here's a screenshot of the result, as you asked :) As you can see its 3.15.3

image

@AyanBhadury
Copy link

Drop a mail to support@fusioncharts.com with your license key, they would help you accordingly.

@omanzelli
Copy link

Same problem trying to upgrade from Angular 11 to 12

"angular-fusioncharts": "^3.2.0",
"fusioncharts": "^3.18.0",
"fusionmaps": "^3.18.0"

Here my error:

Fetching dependency metadata from registry...
                  Package "angular-fusioncharts" has an incompatible peer dependency to "@angular/core" (requires "^4.0.0" (extended), would install "12.2.16").
× Migration failed: Incompatible peer dependencies found.

@jberndsen
Copy link

The problem is not necessarily compatibility with Angular, the Fusioncharts code itself is fine. The problem is in the peerDependencies declaration in angular-fusioncharts (here: https://github.com/fusioncharts/angular-fusioncharts/blob/develop/dist/package.json#L37) and occurs during installation. If the package is preinstalled, and you then switch the Node version, the problem does not occur.

If you would change "@angular/core": "^4.0.0", to "@angular/core": ">=4.0.0", I think that would already solve the issue. A google search for "npm peer dependency multiple versions" provides more examples.

Here is a really small package.json which demonstrates the issue. If you switch to NPM 8 before running npm install (I tested this using nvm) and then install, the error occurs.

{
  "name": "standard-ui",
  "version": "0.0.0",
  "private": true,
  "dependencies": {
    "@angular/common": "~12.2.0",
    "@angular/compiler": "~12.2.0",
    "@angular/core": "~12.2.0",
    "@angular/platform-browser": "~12.2.0",
    "@angular/platform-browser-dynamic": "~12.2.0",
    "angular-fusioncharts": "^3.2.0",
    "fusioncharts": "^3.18.0",
    "rxjs": "~6.6.3",
    "tslib": "^2.3.0",
    "zone.js": "~0.11.4"
  }
}

@jerone
Copy link

jerone commented Apr 26, 2022

@itfusion

Please allow for an wider range of Angular package version in your package.json. This package is the only package requiring us to use force upgrades.

E.g.

npx @angular/cli@latest update @angular/core @angular/cli --force

Or via --legacy-peer-deps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants