Skip to main content

Posts

Showing posts from August, 2017

Ionic - Using Chart.js

In the world of data, visualization plays the important role. It helps the business to identify the various patterns. More and more of data visualization and data scientist professional are being required. With great demand in visualization, great tools and technologies are emerging too. In this post we are will be looking upon Chart.js  with Ionic. It's an open source javascript library, which provides some predefined charts. Developers can easily integrate these charts into their web application. Syntax and integration of Chart.js is also very simple. We assume that you have already installed ionic on your system, if not please follow the steps given on ionic documentation. Let's first create an ionic application ionic start ChartJsDemo blank Now our application is created, let's install Chart.js into our application npm install chart.js --save Now we are ready to incorporate Chart.js into our application.  To import Chart.js into our application, all we need to...