Edupala

Comprehensive Full Stack Development Tutorial: Learn Ionic, Angular, React, React Native, and Node.js with JavaScript

Angular

How to implement Angular excel generator in Angular 11|12 ?

In this tutorial, we’ll learn to export data to excel in Angular using the ngx-pappaparse library. We will view data in Angular excel or angular CSV files. The ngx-papaparse library allows us to export data in a spreadsheet of file format XLSX or CVS. The CSV file format is compatible with Excel and Google Sheets. […]

Complete guide to Angular Font-awesome icons in Angular 11 and 12.

In this tutorial, we’ll learn how to use the font-awesome in an Angular project. The Font-Awesome teams have made an official Angular font-awesome component that’s available for all who want to integrate icons in an Angular project. The font-awesome is a toolkit for web and mobile applications that provides icons and social logos. Like font awesome, we can […]

How to create an Angular custom component

Angular components are one of the building blocks of the angular. A typical Angular application is represented by a tree of elements starting with a single root component. An Angular framework allows us to develop applications in a component-based approach. Components bring reusability to a view. Once we have created a component, we can use […]

What is the angular @Input() decorator used for?

An angular component is the basic building of an Angular framework. Components in the angular form in a hierarchy structure of parent and child relationships. They can communicate and share data with each other and data can flow from parent to child or child to parent. We can use the angular @Input() decorator, to send […]

How to integrate d3js in Angular and example of Angular D3js

D3js is a powerful and popular open-source data visualization library and helps to visualize or represent data in a chart inside a web application. We’ll demonstrate two examples of the Angular d3js chart. The D3js is standard for data visualization that allows us to create more complex and provide more flexibility in creating data visualization […]

Angular async pipe – How to use it properly in Angular?

The angular async pipe is an angular built-in pipe and impure pipe. The async pipe allows data obtained asynchronously and displays the latest value upon every change. Under the hood, it uses Promise or Observable depending if your async data comes from a Promise or an Observable. It takes an Observable or a promise as […]

Scroll to top