Dragos
Dragos
> I had a similar problem as described in the first message in this thread. I tried to create an Angular 7 library with `ng g lib`. Turned out that...
Is there any update for this issue? I use the latest version of 3 and I have the same problem. The workaround works, but it's not exactly what we are...
I found the images in the node_modules/amcharts3/amcharts/images folder, but it seems like the path the amchart.js tries to load isn't this one (it is only amcharts/images). Should I modify amchart.js...
I sort of found a solution on how to make amcharts3 work offline, but it is sort of a solution because for angular 7 it doesn't fix anything. I tried...
In the end I found a solution to fix this issue The fix was to change the assets in the following code: "assets": ["src/favicon.ico", "src/assets", { "glob": "**/*", "input": "./node_modules/amcharts3/amcharts/images",...
> @RCout1nho @Faulkner368 @NikGurev I have spent a few hours with this problem and I found a solution that worked for me. > > Browser: Chrome (Version 124.0.6367.118 (Official Build)...
For me the bug happens with and without the templaceCacheSize (but templateCacheSize not to 0 fixes it in most cases*). Unfortunately in our case ngOnChanges is not a solution since...
> I hadn't seen this without `templaceCacheSize:0` and most often seemed from stackoverflow and the likes to be caused by element sizes not matching what you have defined in `itemSize`,...
I succeeded in shifting the elements with a JavaScript type of solution after I thought a bit. ``` effect(() => { const nativElem = this.cdkScrollElement()?.elementRef.nativeElement; if (nativElem) { const last...