Is there a timeline of when these components will be updated for Angular v15? If there is a beta version in the works I'd like to get in on it!
Hello Nate,
We are currently working on releasing a version of the igniteui-angular-charts targeting Angular 15 for the upcoming service release estimated to come out this Friday, December 9. There does not currently exist a “beta” version for this at this time, but it is worth noting that our latest version of igniteui-angular-charts – while not “officially” supported on Angular 15 may still work there while you await the official version.
Please let me know if you have any other questions or concerns on this matter.
Thank you for the quick reply. On Friday I was able to install the new version but I am running into an issue that I think has to do with my app being an Angular v15 standalone app. There aren't any errors being thrown but the chart just doesn't show. Here are the steps I've taken
import { bootstrapApplication } from '@angular/platform-browser'; import { provideHttpClient } from '@angular/common/http'; import { AppComponent } from './app/app.component'; import { provideAnimations } from '@angular/platform-browser/animations'; bootstrapApplication(AppComponent, { providers: [provideAnimations(), provideHttpClient()] }).catch(err => console.error(err));
Hopefully I'm just missing something simple. Thank you in advance for your help.
Thank you for your update on this matter.
My best guess is that if it initially works, perhaps the standalone component is not imported into your modules file correctly, and so it is missing the modules needed for the chart to render?
Would it be possible for you to please attach the sample that you tried to convert to using Angular 15 so that I can see what changes you made to try to make the app.component into a standalone component?
Thanks Andrew. Your best guess was correct. I had missed importing a module.
Thanks for your help!