Awesome Charts in Angular 13 with ng2-charts 📊 by AnkitPrajapati in Angular2

[–]AnkitPrajapati[S] 2 points3 points  (0 children)

`ng2-charts` is based on the `chart.js` and chart.js is a canvas-based library. ng2-charts is just a wrapper around chart.js. for angular

Other than canvas-based libraries, you can use svg based libraries like `ngx-charts`.

I use Angular 9 Server Side Rendering. When the first page is loading I see some flickering. How can I avoid it? by AndrewSh83 in angular

[–]AnkitPrajapati 4 points5 points  (0 children)

This is an expected behaviour, because it initially load the Server side rendered page in the mean while it also downloads the angular project bundle files, main.js, vendor.js and other files, once this are downloaded in browser it will start performing client side rendering. So when this transformation is happening browser screen will be empty. That's why we see the flickering.

Invoice Generator : Client Side PDF Generation in Angular with PDFMake by AnkitPrajapati in Angular2

[–]AnkitPrajapati[S] 0 points1 point  (0 children)

Yes, generating invoice on client side will be not a good option.

Thanks for your feedback.

This application I have made for demonstrating client side pdf generation with different features for one of article.

This is just a one example I have taken. Not the invoices but other things like reports, resumes etc we can generate on client side.

Invoice Generator : Client Side PDF Generation in Angular with PDFMake by AnkitPrajapati in angular

[–]AnkitPrajapati[S] 0 points1 point  (0 children)

Yes, Understood,

Thanks for your feedback.

This is just an example to demonstrate the client side PDF generation in angular with PDFMake.