Articles


Data visualization with Angular

Data visualization is a visual representation of quantitative information in the form of charts, graphs, plots, and so on. There are so many libraries and frameworks available to visualize data, but the one that we are going to talk about in this article is ngx-charts.

Ngx-charts is a charting framework for Angular which wraps the D3 JavaScript library and uses Angular to render and animate SVG elements. It is one of the most popular frameworks for Angular application development because it makes it so much easier to render charts and provides other possibilities that the Angular platform offers such as AoT, Universal, etc.

Source de l’article sur DZONE


Introduction

In this article, we will learn how to make our Angular app available in different languages using i18n and localization. We will create an Angular application and configure it to serve the content in three different languages. We will also deploy our app to Google Firebase and see how localization works in real-time.

We will use Angular 7 and VS Code to develop our application. Take a look at the application output.

Source de l’article sur DZONE


The Problem

Let’s say we have a list of members using our services. The list shows the first name, last name, and level of membership in our system

The logic for membership calculating is simply this:

Source de l’article sur DZONE