Installation

The angular-fusioncharts component, along with FusionCharts Suite XT, lets you add interactive JavaScript charts and graphs to your web and mobile applications using only a single Angular component.

In this article, we will show you how to download and install the angular-fusionCharts component and all the other dependencies on your system.

Unlike other tech stacks angular-fusioncharts can only be used via npm. Since, Angular2 and onward do not support direct <script> inclusion of files, this page shows only the steps to install via npm.

Before installing and starting to work with angular-fusioncharts wrapper, let's get familiar with the JavaScript files present in the FusionCharts package:

File Name Description
fusioncharts.js This is the core FusionCharts library, which you need to import in all your pages where you want to generate a chart, gauge or a map.
fusioncharts.charts.js This file is required to render all charts present under FusionCharts XT.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.charts.js provided they are in the same folder.
fusioncharts.widgets.js This file is required to render all gauges present under FusionWidgets XT.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.widgets.js provided they are in the same folder.
fusioncharts.powercharts.js This file is required to render all charts present under PowerCharts XT.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.powercharts.js provided they are in the same folder.
fusioncharts.gantt.js This file is required to render the Gantt chart.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.gantt.js provided they are in the same folder.
fusioncharts.treemap.js This file is required to render the Treemap.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.treemap.js provided they are in the same folder.
fusioncharts.zoomscatter.js This file is required to render the Zoom scatter chart.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.zoomscatter.js provided they are in the same folder.
fusioncharts.zoomline.js This file is required to render the Zoom line charts.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.zoomline.js provided they are in the same folder.
fusioncharts.overlappedbar2d.js This file is required to render the Overlapped Bar 2D chart.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.overlappedbar2d.js provided they are in the same folder.
fusioncharts.overlappedcolumn2d.js This file is required to render the Overlapped Column 2D chart, present under FusionCharts XT.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.overlappedcolumn2d.js provided they are in the same folder.
fusioncharts.maps.js This file is the core map renderer file. The map definitions, however, are stored separately, as explained next.
Note: When you include fusioncharts.js file in your page, you do not need to include this file separately, as fusioncharts.js internally loads fusioncharts.maps.js provided they are in the same folder.
maps/* This folder contains Map Definition files required by each map to be rendered by fusioncharts.maps.js. To keep the download package size small, it contains only 2 maps - fusioncharts.world.js and fusioncharts.usa.js. You can download the definition files of all the 1400+ maps offered by FusionMaps XT from here .
Note: Replace the map definition files (of v3.12.2 or older) with the latest files available in download package while upgrading to v3.13.0.
themes/* This folder contains pre-packaged themes that can be applied to charts, gauges, and maps to style them through a central FusionCharts theme files. Refer each theme with their respective JavaScript file names.

Install Angular-FusionCharts via npm

This section outlines the steps for installing angular-fusioncharts via npm:

Step 1: Install angular-fusioncharts

$ npm install angular-fusioncharts --save

Step 2: Install fusioncharts core library

$ npm install fusioncharts --save

The above steps complete the installation of angular-fusioncharts. The FusionCharts ES module uses dynamic import which is an advanced ES6 feature. This feature is supported from typescript v2.4.0. However, Angular 2 uses v2.2.0. So, the FusionCharts ES module is not supported in Angular 2.

To start using angular-fusioncharts follow the steps below:

Step 1: Import FusionChartsModule in the root @NgModule (in your application)

import { FusionChartsModule } from 'angular-fusioncharts';
Step 2: Import FusionCharts library in the root @NgModule(in your application)

import FusionCharts from 'fusioncharts/core';
Step 3: Import Specific modules

// Include the chart from viz folder
// E.g. - import ChartType from fusioncharts/viz/[ChartType]
import Column2D from 'fusioncharts/viz/column2d';
Step 1: Import FusionCharts Module in the root @NgModule (in your application)

import { FusionChartsModule } from 'angular-fusioncharts';
Step 2: Import FusionCharts library in the root @NgModule(in your application)

import * as FusionCharts from 'fusioncharts';
Step 3: Import Specific modules
Import Charts

import * as Charts from 'fusioncharts/fusioncharts.charts';
PowerCharts

import * as PowerCharts from 'fusioncharts/fusioncharts.powercharts';
FusionWidgets

import * as Widgets from 'fusioncharts/fusioncharts.widgets'; // Widgets
Note: To import specific charts, include the following import statements in your code:
Gantt Chart

import * as Gantt from 'fusioncharts/fusioncharts.gantt'; // Gantt
Treemap

import * as Treemap from 'fusioncharts/fusioncharts.treemap'; // Treemap
ZoomScatter

import * as ZoomScatter from 'fusioncharts/fusioncharts.zoomscatter'; //Zoom Scatter
ZoomLine

import * as ZoomLine from 'fusioncharts/fusioncharts.zoomline'; //Zoom Line
Overlapped Bar2D and Column2D Charts

import * as OverlappedBar2D from 'fusioncharts/fusioncharts.overlappedbar2d'; //Overlapped Bar 2D
import * as OverlappedColumn2D from 'fusioncharts/fusioncharts.overlappedcolumn2d'; //Overlapped Column 2D

Include Map via npm

FusionCharts Suite XT provides 1400+ data-driven maps as a part of the FusionMaps product. To reduce the size of the download package, the fusioncharts package contains only two map definitions in fusioncharts/maps directory - the World Map, and the Map of USA. To use any of these two map definition files, follow the steps given below:

Step 1: Include the core FusionCharts library

import FusionCharts from 'fusioncharts/core';
Step 2: Load the FusionMaps renderer and the map definition file

import FusionCharts from 'fusioncharts/core';
import FusionMaps from 'fusioncharts/maps'; // Maps
import World from 'fusioncharts/maps/es/fusioncharts.world' // World Map
Step 1: Include the core FusionCharts library

import * as FusionCharts from 'fusioncharts';
Step 2: Load the FusionMaps renderer and the map definition file

import * as FusionCharts from 'fusioncharts';
import * as FusionMaps from 'fusioncharts/fusioncharts.maps'; // Maps
import * as World from 'fusioncharts/maps/fusioncharts.world' // World Map

Load other map definition files

To use any other map (except world and USA) from the 1400+ maps, download the map definition files, then copy those map files to your current maps folder. The map definition files are named in the fusioncharts.[MAP_ALIAS].js format, where MAP_ALIAS represents the country, state or region name.


$ npm install fusionmaps
Once the fusionmaps package is installed you will find all the map definition files in fusionmaps/maps/es folder.
Note: The fusionmaps package is dependent on the fusioncharts package. Therefore, to use fusionmaps, it is necessary to first include fusioncharts in your project and the map renderer as shown below:

import FusionCharts from 'fusioncharts/core';
import FusionMaps from 'fusioncharts/maps';

$ npm install fusionmaps
Once the fusionmaps package is installed you will find all the map definition files in fusionmaps/maps folder.
Note: The fusionmaps package is dependent on the fusioncharts package. Therefore, to use fusionmaps, it is necessary to first include fusioncharts in your project and the map renderer as shown below:

import * as FusionCharts from 'fusioncharts';
import * as FusionMaps from 'fusioncharts/fusioncharts.maps';

Load the map definition file(s) from the fusionmaps package for the map(s) to be rendered using the format: fusioncharts.<MAP_ALIAS>.

Click here to get the alias names for all map definition files.

Therefore, assuming you need to render the map of California, the alias name california replaces MAP_ALIAS in the format. So, the complete format will be fusioncharts.california.


import FusionCharts from 'fusioncharts/core';
import FusionMaps from 'fusioncharts/maps';
import California from 'fusionmaps/maps/es/fusioncharts.california';

import * as FusionCharts from 'fusioncharts';
import * as FusionMaps from 'fusioncharts/fusioncharts.maps';
import * as California from 'fusionmaps/maps/fusioncharts.california';

It is mandatory to include the map definition files for all maps that you want to render in your application. Unlike the core files that are stored in the fusioncharts directory, all map definition files are stored in the maps/es directory and are fetched from there.

Include Themes via npm

Themes shipped with FusionCharts Suite XT allow you to apply centralized themes to any number of charts.

In a theme file, we can centralize the following aspects of all of your charts, gauges, and maps:

  • Visual appearance (data plot color, font color, font size, etc.)
  • Behavior (hover effects for data plots)
  • Intelligence (applying different colors to the positive and negative data plots in all charts that use the theme)

To include themes, follow the steps given below:

Step 1: Import FusionCharts core library

import FusionCharts from 'fusioncharts/core'
Step 2: Include the theme file

import FusionTheme from 'fusioncharts/themes/es/fusioncharts.theme.fusion'
Step 1: Import FusionCharts core library

import * as FusionCharts from 'fusioncharts'
Step 2: Include the theme file

import * as FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion'

Only including the fusioncharts.theme.fusion.js file will not apply the theme. To apply the theme, set the value of theme attribute to the respective name of the theme. For more details click here .

Was this article helpful to you ?