Create a Gauge in React using FusionCharts
Overview
FusionCharts is a JavaScript charting library that enables you to create interactive charts, gauges, maps and dashboards in JavaScript. We have built a simple and lightweight React component which provides bindings for FusionCharts. The react-fusioncharts
component allows you to easily add rich and interactive charts to any React project.
In this page, we'll see how to install FusionCharts and render a gauge using the react-fusionCharts
component.
Installation
Install FusionCharts and the react-fusioncharts
component using any of the following methods:
react-fusioncharts
component via npm follow the steps below:react-fusioncharts
module
$ npm install react-fusioncharts --save
fusioncharts
JS files
$ npm install fusioncharts --save
react-fusioncharts
component follow the steps below:
<head>
<!-- Step 1 - Including react -->
<script type="text/javascript" src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script type="text/javascript" src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<!-- Step 2 - Including Babel for JSX transpiling -->
<script type="text/javascript" src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Step 3 - Including the fusioncharts core library -->
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<!-- Step 4 - Including the react-fusioncharts component-->
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/react-fusioncharts.min.js"></script>
<!-- Step 5 - Including the fusion theme -->
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
</head>
react-fusioncharts
component follow the steps below:
<head>
<!-- Step 1 - Including react -->
<script type="text/javascript" src="path/to/local/react.js"></script>
<script type="text/javascript" src="path/to/local/react-dom.js"></script>
<!-- Step 2 - Including Babel for JSX transpiling -->
<script type="text/javascript" src="path/to/local/babel-core.js"></script>
<!-- Step 3 - Including the fusioncharts core library -->
<script type="text/javascript" src="path/to/local/fusioncharts.js"></script>
<!-- Step 4 - Including the react-fusioncharts component -->
<script type="text/javascript" src="path/to/local/react-fusioncharts.js"></script>
<!-- Step 5 - Including the fusion theme -->
<script type="text/javascript" src="path/to/local/themes/fusioncharts.theme.fusion.js"></script>
</head>
Create your first gauge
Gauges are powerful tools that can showcase information using a radial or linear scale to display data.
To start with, we'll build a simple angular gauge showcasing Nordstrom's Customer Satisfaction Score as shown below.
FusionCharts Suite has 95+ chart types for you to explore. Find the complete list of chart types here.
The angular gauge is shown below:
Chart data
The thresholds for the above sample is shown in the table below:
Range | Color | Hex Code |
---|---|---|
0-50 | Red | #F2726F |
50-75 | Yellow | #FFC533 |
75-100 | Green | #62B58F |
So, any score less than 50 is bad and is red. Any score between 50 and 75 is average and is yellow. Any score above 75 means good and are green.
FusionCharts accepts data in JSON format. Following code is the JSON representation of the above table with the required attributes to render the above chart.
{
// Chart Configuration
"chart": {
"caption": "Nordstrom's Customer Satisfaction Score for 2017",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"numberSuffix": "%",
"theme": "fusion",
"showToolTip": "0"
},
// Chart Data
"colorRange": {
"color": [
{
"minValue": "0",
"maxValue": "50",
"code": "#F2726F"
},
{
"minValue": "50",
"maxValue": "75",
"code": "#FFC533"
},
{
"minValue": "75",
"maxValue": "100",
"code": "#62B58F"
}
]
},
"dials": {
"dial": [
{
"value": "81"
}
]
}
}
In the above JSON:
Create the
chart
object to define the elements of the gauge.Create the
colorRange
object to set the color associated with the specific range of values.Specify
minValue
andmaxValue
within thecolor
array under thecolorRange
object.Set the
code
attribute to specify the hex color of respective ranges.Create the
dials
object to represent the customer satisfaction score.Create the
dial
object underdials
object to set the value of customer satisfaction score.
The chart object and the respective arrays contain a set of key-value pairs known as attributes
. These attributes are used to set the functional and cosmetic properties of the gauge.
Now that you have the data in JSON format, let's see how to render the chart.
Render the gauge
To render the gauge, follow the steps below:
Include
react
Include
react-fusioncharts
Include the
fusioncharts
libraryInclude gauge type.
Include the FusionCharts theme file to apply style to the charts.
Add the gauge and theme as a dependency to the core.
Store the chart configurations as a JSON object. In this JSON object:
Set the gauge type as
angulargauge
. Each chart type is represented with a unique chart alias. For Angular Gauge, the alias isangulargauge
. Find the complete list of gauge types with their respective alias here.Set the width and height (in pixels).
Set the
dataFormat
as json.Embed the json data as the value of the
dataSource
.
Create the DOM element and pass the
react-fusioncharts
component directly to the ReactDOM.render() method.
The consolidated code is shown below:
// Step 1 - Including react
import React from 'react';
import ReactDOM from 'react-dom';
// Step 2 - Including the react-fusioncharts component
import ReactFC from 'react-fusioncharts';
// Step 3 - Including the fusioncharts library
import FusionCharts from 'fusioncharts';
// Step 4 - Including the chart type
import Widgets from 'fusioncharts/fusioncharts.widgets';
// Step 5 - Including the theme as fusion
import FusionTheme from 'fusioncharts/themes/fusioncharts.theme.fusion';
// Step 6 - Adding the chart and theme as dependency to the core fusioncharts
ReactFC.fcRoot(FusionCharts, Widgets, FusionTheme);
// Step 7 - Creating the JSON object to store the chart configurations
const chartConfigs = {
type: 'angulargauge', // The gauge type
width: '450', // Width of the gauge
height: '250', // Height of the gauge
dataFormat: 'json', // Data type
dataSource: {
// Chart Configuration
"chart": {
"caption": "Nordstrom's Customer Satisfaction Score for 2017",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"numberSuffix": "%",
"theme": "fusion",
"showToolTip": "0"
},
// Chart Data
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#F2726F"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#FFC533"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#62B58F"
}]
},
"dials": {
"dial": [{
"value": "81"
}]
}
}
};
// Step 9 - Creating the DOM element to pass the react-fusioncharts component
class App extends React.Component {
render() {
return (
<ReactFC
{...chartConfigs}/>
);
}
}
export default App
<html>
<head>
<!-- Including react -->
<script type="text/javascript" src="https://unpkg.com/react@16/umd/react.development.js"></script>
<!-- Including react-dom -->
<script type="text/javascript" src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<!-- Including babel -->
<script type="text/javascript" src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
<!-- Including the fusioncharts core library -->
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<!-- Including the fusioncharts library to render charts -->
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.charts.js"></script>
<!-- Including react-fusioncharts component -->
<script type="text/javascript" src="https://unpkg.com/[email protected]/dist/react-fusioncharts.min.js"></script>
<!-- Including the fusion theme -->
<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
<script type="text/jsx">
ReactFC.fcRoot(FusionCharts);
const chartConfigs = {
type: 'angulargauge',
renderAt: 'chart-container',
width: '450',
height: '250',
dataFormat: 'json',
dataSource: {
// Chart Configuration
"chart": {
"caption": "Nordstrom's Customer Satisfaction Score for 2017",
"lowerLimit": "0",
"upperLimit": "100",
"showValue": "1",
"numberSuffix": "%",
"theme": "fusion",
"showToolTip": "0"
},
// Chart Data
"colorRange": {
"color": [{
"minValue": "0",
"maxValue": "50",
"code": "#F2726F"
}, {
"minValue": "50",
"maxValue": "75",
"code": "#FFC533"
}, {
"minValue": "75",
"maxValue": "100",
"code": "#62B58F"
}]
},
"dials": {
"dial": [{
"value": "81"
}]
}
}
};
</script>
<script type="text/jsx">
ReactDOM.render(
<ReactFC {...chartConfigs} />,
document.getElementById('chart-container')
);
</script>
</head>
<body>
<div id='chart-container'></div>
</body>
</html>
<html>
<head>
<!-- Including react -->
<script type="text/javascript" src="path/to/local/react.development.js"></script>
<!-- Including react-dom -->
<script type="text/javascript" src="path/to/local/react-dom.development.js"></script>
<!-- Including babel -->
<script type="text/javascript" src="path/to/local/babel.min.js"></script>
<!-- Including the fusioncharts core library -->
<script type="text/javascript" src="path/to/local/fusioncharts.js"></script>
<!-- Including the fusioncharts library to render charts -->
<script type="text/javascript" src="path/to/local/fusioncharts.widgets.js"></script>
<!-- Including react-fusioncharts component -->
<script type="text/javascript" src="path/to/local/react-fusioncharts.min.js"></script>
<!-- Including the fusion theme -->
<script type="text/javascript" src="path/to/local/themes/fusioncharts.theme.fusion.js"></script>
<script type="text/jsx">
ReactFC.fcRoot(FusionCharts);
const chartConfigs = {
type: 'angulargauge',
renderAt: 'chart-container',
width: '450',
height: '250',
dataFormat: 'json',
dataSource: {
// Gauge Configuration
"chart": {
"caption": "Countries With Most Oil Reserves [2017-18]",
"subCaption": "In MMbbl = One Million barrels",
"xAxisName": "Country",
"yAxisName": "Reserves (MMbbl)",
"numberSuffix": "K",
"theme": "fusion",
},
// Chart Data
"data": [{
"label": "Venezuela",
"value": "290"
}, {
"label": "Saudi",
"value": "260"
}, {
"label": "Canada",
"value": "180"
}, {
"label": "Iran",
"value": "140"
}, {
"label": "Russia",
"value": "115"
}, {
"label": "UAE",
"value": "100"
}, {
"label": "US",
"value": "30"
}, {
"label": "China",
"value": "30"
}]
}
};
</script>
<script type="text/jsx">
ReactDOM.render(
<ReactFC {...chartConfigs} />,
document.getElementById('chart-container')
);
</script>
</head>
<body>
<div id='chart-container'></div>
</body>
</html>
That's it! Your first gauge using react-fusioncharts
is ready.
Problem rendering the chart?
In case there is an error, and you are unable to see the chart, check for the following:
If you are getting a JavaScript error on your page, check your browser console for the exact error and fix accordingly. If you're unable to solve it, click here to get in touch with our support team.
If the chart does not show up at all, but there are no JavaScript errors, check if the FusionCharts Suite XT JavaScript library has loaded correctly. You can use developer tools within your browser to see if
fusioncharts.js
was loaded.If you get a Loading Data or Error in loading data message, check whether your JSON data structure is correct, or there are conflicts related to quotation marks in your code.