LED Gauge

This chart type belongs to FusionWidgets XT.

An LED Gauge is similar to an angular gauge chart, but with a horizontal/vertical scale instead of a circular one. It uses bars that change color, or marks out different regions in different colors to indicate whether data is within preset parameters. You can select the colors to suit your requirements, such as green for satisfactory, yellow for caution, and red for alarm.

LED gauges are of two types - horizontal and vertical. The horizontal LED gauge has the bar placed horizontally, while the vertical LED has it vertically. LED Gauges are used in financial applications like management dashboards, factory operation output reports, etc.

{ "header": "Chart Anatomy", "subHeader": "To know how FusionCharts works, it is important to understand the various components and concepts of a chart", "content": { "header": "Below are different sections with interactive annotated images describing various components and concepts of charts", "contentGroup": [ { "itemHeader": "LED Gauge", "imgSrc": "led-gauge-anatomy.png", "annotations": [{ "annotationNumber": "1", "annotationName": "Caption", "annotationDesc": "The caption (also called the gauge title) is the heading of your gauge. You can add custom text for the caption, as well as configure its font properties and cosmetics.", "annotationDescLinkPath": null, "leftPosition": "35%", "topPosition": "31%", "annotationLinks": [{ "linkDesc": "Learn how to add caption ", "linkPath": "/chart-guide/chart-configurations/caption-and-sub-caption#set-the-caption-and-subcaption" }, { "linkDesc": "You can customize font properties and cosmetics of caption using attributes. Know more about them. ", "linkPath": "/chart-guide/chart-configurations/caption-and-sub-caption#customize-font-properties" }, { "linkDesc": "You can also customize the alignment of the caption. Learn more about it ", "linkPath": "/chart-guide/chart-configurations/caption-and-sub-caption#configure-caption-alignment" } ] }, { "annotationNumber": "2", "annotationName": "Canvas Area", "annotationDesc": "Canvas area refers to the area in which the gauge data is plotted, excluding the area where titles, legends, and axis names are rendered.", "annotationDescLinkPath": null, "leftPosition": "78%", "topPosition": "30%", "annotationLinks": [{ "linkDesc": "You can customize border for canvas, learn more about it ", "linkPath": "/chart-guide/chart-configurations/canvas#show-canvas-border" }, { "linkDesc": "You can customize background color for canvas, as well as add gradient fill to it. Learn more about it ", "linkPath": "/chart-guide/chart-configurations/canvas#use-gradient-fill" } ] }, { "annotationNumber": "3", "annotationName": "Lower Limit", "annotationDesc": "Lower Limit refers to the lowest point in the reference scale used in the gauge. Learn more about it ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "22.5%", "topPosition": "49%", "annotationLinks": [] }, { "annotationNumber": "4", "annotationName": "Upper Limit", "annotationDesc": "Upper Limit refers to the highest point in the reference scale used in the gauge. Learn more about it ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "70%", "topPosition": "49%", "annotationLinks": [] }, { "annotationNumber": "5", "annotationName": "Gauge Scale", "annotationDesc": "The gauge scale displays all possible values between the lower and upper limits. Learn more about it ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "51%", "topPosition": "50%", "annotationLinks": [] }, { "annotationNumber": "6", "annotationName": " Chart Value", "annotationDesc": "The chart value displays the data value of the plot point where the mouse pointer is placed. Learn more about it ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "41%", "topPosition": "52%", "annotationLinks": [] }, { "annotationNumber": "7", "annotationName": "Tick Mark", "annotationDesc": "Tick marks are placed at regular intervals on the gauge scale, to indicate data values. Learn more about them ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "55.5%", "topPosition": "41%", "annotationLinks": [] }, { "annotationNumber": "8", "annotationName": "Data Plot", "annotationDesc": "Data plot refers to the columns of the dial in an angular gauge, the sphere in a bulb gauge, the thermometer in a thermometer gauge, and so on.", "annotationDescLinkPath": null, "leftPosition": "32%", "topPosition": "40.5%", "annotationLinks": [{ "linkDesc": "You can customize the way your data plot looks using colors, gradients and hover effects using available attributes. Learn more about their usage ", "linkPath": "/chart-guide/chart-configurations/data-plot" }] } ] } ] } }

Basics of LED Gauges

The LED gauge (horizontal/vertical) is defined by its minimum and maximum values. Within that scale, you can create various ranges to classify your data. For example, you might define a range called "Best" that consists of values between 60 and 100. You might also define a range called "Weak" that consists of values between 30 and 60. For each range, you define a color, which helps in visually distinguishing the ranges from each other.

A horizontal LED gauge rendered to indicate fuel levels looks like the following:

FusionCharts will load here..
{
    "chart": {
        "caption": "Fuel Level Indicator",
        "lowerLimit": "0",
        "upperLimit": "100",
        "lowerLimitDisplay": "Empty",
        "upperLimitDisplay": "Full",
        "numberSuffix": "%",
        "valueFontSize": "12",
        "showhovereffect": "1",
        "origW": "400",
        "origH": "150",
        "ledSize": "3",
        "ledGap": "2",
        "manageResize": "1",
        "theme": "fusion"
    },
    "annotations": {
        "showbelow": "1",
        "groups": [
            {
                "id": "indicator",
                "items": [
                    {
                        "id": "bgRectAngle",
                        "type": "rectangle",
                        "alpha": "90",
                        "radius": "1",
                        "fillColor": "#6baa01",
                        "x": "$gaugeCenterX - 20",
                        "tox": "$gaugeCenterX + 20",
                        "y": "$gaugeEndY + 25",
                        "toy": "$gaugeEndY + 45"
                    }
                ]
            }
        ]
    },
    "colorRange": {
        "color": [
            {
                "minValue": "0",
                "maxValue": "45",
                "code": "#e44a00"
            },
            {
                "minValue": "45",
                "maxValue": "75",
                "code": "#f8bd19"
            },
            {
                "minValue": "75",
                "maxValue": "100",
                "code": "#6baa01"
            }
        ]
    },
    "value": "92"
}
<chart caption="Fuel Level Indicator" lowerlimit="0" upperlimit="100" lowerlimitdisplay="Empty" upperlimitdisplay="Full" numbersuffix="%" valuefontsize="12" showhovereffect="1" origw="400" origh="150" ledsize="3" ledgap="2" manageresize="1" theme="fusion">
    <annotations showbelow="1">
        <annotationgroup id="indicator">
            <annotation id="bgRectAngle" type="rectangle" alpha="90" radius="1" fillcolor="#6baa01" x="$gaugeCenterX - 20" tox="$gaugeCenterX + 20" y="$gaugeEndY + 25" toy="$gaugeEndY + 45" />
        </annotationgroup>
    </annotations>
    <colorrange>
        <color minvalue="0" maxvalue="45" code="#e44a00" />
        <color minvalue="45" maxvalue="75" code="#f8bd19" />
        <color minvalue="75" maxvalue="100" code="#6baa01" />
    </colorrange>
    <value>92</value>
</chart>
<html>
<head>
	<title>My first chart using FusionCharts Suite XT</title>
	<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
	<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
	<script type="text/javascript">
		FusionCharts.ready(function(){
			var chartObj = new FusionCharts({
    type: 'hled',
    renderAt: 'chart-container',
    width: '400',
    height: '150',
    dataFormat: 'json',
    dataSource: {
        "chart": {
            "caption": "Fuel Level Indicator",
            "lowerLimit": "0",
            "upperLimit": "100",
            "lowerLimitDisplay": "Empty",
            "upperLimitDisplay": "Full",
            "numberSuffix": "%",
            "valueFontSize": "12",
            "showhovereffect": "1",
            "origW": "400",
            "origH": "150",
            "ledSize": "3",
            "ledGap": "2",
            "manageResize": "1",
            "theme": "fusion"
        },
        //All annotations are grouped under this element
        "annotations": {
            "showbelow": "1",
            "groups": [{
                //Each group needs a unique ID
                "id": "indicator",
                "items": [

                    {
                        "id": "bgRectAngle",
                        //Polygon item
                        "type": "rectangle",
                        "alpha": "90",
                        "radius": "1",
                        "fillColor": "#6baa01",
                        "x": "$gaugeCenterX - 20",
                        "tox": "$gaugeCenterX + 20",
                        "y": "$gaugeEndY + 25",
                        "toy": "$gaugeEndY + 45"
                    }
                ]
            }]

        },
        "colorRange": {
            "color": [{
                "minValue": "0",
                "maxValue": "45",
                "code": "#e44a00"
            }, {
                "minValue": "45",
                "maxValue": "75",
                "code": "#f8bd19"
            }, {
                "minValue": "75",
                "maxValue": "100",
                "code": "#6baa01"
            }]
        },
        "value": "92"
    },
    "events": {
        "drawComplete": function(evt, arg) {
            var i,
                //Annotation
                annotations = evt.sender.annotations,
                //Value
                val = evt.sender.getData(),
                //Color Range Array
                crArr = evt.sender.args.dataSource.colorRange.color;

            for (var i = crArr.length - 1; i >= 0; i--) {
                //When value falls within the color range
                if (val >= crArr[i].minValue && val <= crArr[i].maxValue) {
                    annotations.update('bgRectAngle', {
                        "fillColor": crArr[i].code
                    });
                }
            }

        }
    }

}
);
			chartObj.render();
		});
	</script>
	</head>
	<body>
		<div id="chart-container">FusionCharts XT will load here!</div>
	</body>
</html>

Click here to edit the above gauge.

A vertical LED gauge rendered to indicate fuel levels looks like the following:

FusionCharts will load here..
{
    "chart": {
        "caption": "Fuel Level Indicator",
        "lowerLimit": "0",
        "upperLimit": "100",
        "lowerLimitDisplay": "Empty",
        "upperLimitDisplay": "Full",
        "numberSuffix": "%",
        "showValue": "1",
        "valueFontSize": "12",
        "showhovereffect": "1",
        "chartBottomMargin": "20",
        "theme": "fusion"
    },
    "colorRange": {
        "color": [
            {
                "minValue": "0",
                "maxValue": "45",
                "code": "#e44a00"
            },
            {
                "minValue": "45",
                "maxValue": "75",
                "code": "#f8bd19"
            },
            {
                "minValue": "75",
                "maxValue": "100",
                "code": "#6baa01"
            }
        ]
    },
    "value": "92"
}
<chart caption="Fuel Level Indicator" lowerlimit="0" upperlimit="100" lowerlimitdisplay="Empty" upperlimitdisplay="Full" numbersuffix="%" showvalue="1" valuefontsize="12" showhovereffect="1" chartbottommargin="20" theme="fusion">
    <colorrange>
        <color minvalue="0" maxvalue="45" code="#e44a00" />
        <color minvalue="45" maxvalue="75" code="#f8bd19" />
        <color minvalue="75" maxvalue="100" code="#6baa01" />
    </colorrange>
    <value>92</value>
</chart>
<html>
<head>
	<title>My first chart using FusionCharts Suite XT</title>
	<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
	<script type="text/javascript" src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
	<script type="text/javascript">
		FusionCharts.ready(function(){
			var chartObj = new FusionCharts({
    type: 'vled',
    renderAt: 'chart-container',
    width: '150',
    height: '400',
    dataFormat: 'json',
    dataSource: {
        "chart": {
            "caption": "Fuel Level Indicator",
            "lowerLimit": "0",
            "upperLimit": "100",
            "lowerLimitDisplay": "Empty",
            "upperLimitDisplay": "Full",
            "numberSuffix": "%",
            "showValue": "1",
            "valueFontSize": "12",
            "showhovereffect": "1",
            "chartBottomMargin": "20",
            "theme": "fusion"
        },
        "colorRange": {
            "color": [{
                "minValue": "0",
                "maxValue": "45",
                "code": "#e44a00"
            }, {
                "minValue": "45",
                "maxValue": "75",
                "code": "#f8bd19"
            }, {
                "minValue": "75",
                "maxValue": "100",
                "code": "#6baa01"
            }]
        },
        "value": "92"
    }

}
);
			chartObj.render();
		});
	</script>
	</head>
	<body>
		<div id="chart-container">FusionCharts XT will load here!</div>
	</body>
</html>

Click here to edit the above gauge.

Elements of LED Gauges

In the image below, you can see the basic elements of an LED gauge.

Led-gauge

Color Range

You can create various ranges within the minimum and maximum values of an LED gauge. You can create as many ranges as you need. For each range, you need to specify the minimum and maximum limits, a name (rendered as the label for the range), and the hex code for the color of the range.

In the sample LED gauges shown above, the lower limit is 0 and the upper limit is 100. The range limits and the colors for each range have been defined as the following:

  • 0-45: #e44a00

  • 45-75: #f8bd19

  • 75-100: #6baa01

LED Bars and Gaps

The LED bars are the actual data indicators in an LED gauge. The LED bars fill up the container in a ratio that suggests the chart value.

Tick Marks

Tick marks are the calibration marks on the horizontal (or vertical, for the vertical LED) scale to help interpret the reading. There are two types of tick marks which you can draw on the chart:

  • Major tick marks – These are the bigger lines below the scale.

  • Minor tick marks – These are the smaller lines enclosed within the bigger lines.

Chart Value

The chart value indicates the value of the gauge in numeric terms.

Annotations

Annotations let you draw your own custom shapes, text, or load images on the chart.

Create an LED Gauge

To create an LED gauge use the attributes given below:

  • Specify the type using the type attribute. To render a horizontal LED gauge, set hled and to render a vertical LED gauge, set vled.

  • Set the container object using renderAt attribute.

  • Specify the dimension of the chart using width and height attributes.

  • Set the type of data (JSON/XML) you want to pass to the chart object using dataFormat attribute.

  • Use the lowerLimit attribute to specify the lower limit, or the minimum value, of the gauge scale.

  • Use the upperLimit attribute to specify the upper limit, or the maximum value, of the gauge scale.

  • Use the lowerLimitDisplay attribute to specify the label to be displayed with the lower limit value on the gauge scale.

  • Use the upperLimitDisplay attribute to specify the label to be displayed with the upper limit value on the gauge scale.

  • Use the numberSuffix attribute to specify the character which will be appended at the end of a number.

The chart with type attribute set to vled will look as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Specify the Background Color

Use the gaugeFillColor attribute to specify the hex code of the color to be applied to the gauge background.

Refer to the code below:

{
    "chart": {
        "gaugeFillColor": "#444444"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Use a Single Color for LED Fill and Background

When you divide the LED scale into color ranges, the LED bars in each zone take up the fill color of that color range. You can, however, render the LED background using a single fill color (the color of the range to which the current value belongs).

Use the following attributes to apply a single color for the LED fill and the LED background:

  • Set the value of the useSameFillColor attribute to 1, to specify whether a single fill color will be applied to the activated LED bars.

  • Set the value of the useSameFillBgColor attribute to 1, to specify whether a single color will be applied to the entire LED background.

Refer to the code below:

{
    "chart": {
        "useSameFillColor": "1",
        "useSameFillBgColor": "1"       
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Show/Hide the Gauge Border

Set the value of the showGaugeBorder attribute to specify whether the border for the LED gauge should be displayed

Refer to the code below:

{
    "chart": {  
        "showGaugeBorder": "0"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Customize Gauge Border Properties

Use the following attributes to customize the gauge border:

  • Use the gaugeBorderColor attribute to specify the hex code of the color to be used to render the entire border of the gauge.

  • Use the gaugeBorderThickness attribute to specify the thickness, in pixels, for the gauge border.

  • Use the gaugeBorderAlpha attribute to specify the transparency (between 0 for transparent and 100 for opaque) for the gauge border.

Refer to the code below:

{
    "chart": {
        "gaugeBorderColor": "#AAAAAA",
        "gaugeBorderThickness": "7",
        "gaugeBorderAlpha": "70"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Configure LED Bar Size and Gap

By default, the gauge determines the bar size and the gap automatically, based on the data provided by you. However, you can explicitly specify the bar size and gap. Use the following attributes to do so:

  • Use the ledSize attribute to specify the size (in pixels) of the LED bar.

  • Use the ledGap attribute to specify the gap (in pixels) between two consecutive LED bars.

Refer to the code below:

{
    "chart": {
        "ledSize": "5",
        "ledGap": "1"       
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

To make the LEDs appear continuous, you can set ledGap to 0.

Show/Hide Chart Value

Set the value of the showValue attribute to 1, to specify whether the current data value, or the chart value, should be displayed.

Refer to the code below:

{
    "chart": {   
        "showValue": "1"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Show/Hide Tick Marks and Tick Values

Use the following attributes to show/hide tick marks and tick values:

  • Set the value of the showTickMarks attribute to 1, to display tick marks on the LED gauge.

  • Set the value of the showTickValues attribute to to 1, to display tick marks on the LED gauge.

Refer to the code below:

{
    "chart": {
        "showTickMarks": "1",
        "showTickValues": "1"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Configure Tick Marks and Tick Values

By default, the tick marks and values are placed below the gauge in the horizontal LED gauge and to the right in the vertical LED gauge. However, you can explicitly configure the position of tick marks and tick values as required. Use the following attributes to configure tick marks and tick values:

  • Set the value of the ticksBelowGauge attribute to 1, to render tick marks and values below the gauge. Note that this attribute is only applicable to the horizontal LED gauge.

  • Set the value of the ticksOnRight attribute to 1, to specify whether the tick marks and values will be rendered to the right of the gauge. Note that this attribute is only applicable to the vertical LED gauge.

  • Use the tickMarkDistance attribute to specify the distance (in pixels) between the tick marks and the gauge scale.

  • Use the tickValueDistance attribute to specify the distance (in pixels) between the tick marks and the tick values.

  • Set the value of the adjustTM attribute 1, to automatically adjust major tick marks, to ensure better distribution of the chart scale.

  • Use the majorTMNumber attribute to specify the number of major tick marks to be rendered.

  • Use the majorTMHeight attribute to specify the height of major tick marks.

  • Use the minorTMNumber attribute to specify the number of minor tick marks.

  • Use the minorTMHeight attribute to specify the height of minor tick marks.

  • Use the tickValueStep attribute to specify the value of n, to show only every n-th tick value.

Refer to the code below:

{
    "chart": {
        "adjustTM": "1",
        "ticksBelowGauge": "1",
        "tickMarkDistance": "5",
        "tickValueDistance": "2",
        "majorTMNumber": "9",
        "majorTMHeight": "12",
        "minorTMNumber": "4",
        "minorTMHeight": "7",
        "tickValueStep": "2"
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Configure Tick Marks and Tick Value Cosmetics

You can also use FusionCharts Suite XT to configure the cosmetics of major and minor tick marks. Use the following attributes to do so:

  • Use the majorTMColor attribute to specify the hex code of the color to be used to render the major tick marks.

  • Use the majorTMAlpha attribute to specify the transparency (between 0 for transparent and 100 for opaque) of the major tick marks.

  • Use the majorTMThickness attribute to specify the thickness (in pixels) of the major tick marks.

  • Use the minorTMColor attribute to specify the hex code of the color to be used to render the minor tick marks.

  • Use the minorTMAlpha attribute to specify the transparency (between 0 for transparent and 100 for opaque) of the minor tick marks.

  • Use the minorTMThickness attribute to specify the thickness (in pixels) of the minor tick marks.

Refer to the code below:

{
    "chart": { 
        "majorTMNumber": "5",
        "minorTMNumber": "5",
        "tickMarkDistance": "5",
        "majorTMColor": "#0000CC",
        "majorTMAlpha": "60",
        "majorTMThickness": "2",
        "minorTMColor": "#0000CC",
        "minorTMAlpha": "30",
        "minorTMThickness": "2",
    },
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Configure Hover Effects

Using FusionCharts Suite XT, you can display hover effects for the gauge. Set the value of the showHoverEffect attribute to 1, to enable hover effects for an LED gauge.

Refer to the code below:

{
    "chart": {
        "showHoverEffect": "1"
    },
}

The gauge will look like as shown below:

Led

Click here to edit the above gauge.

Realtime LED Gauge

The LED gauge is a real time chart, which can continuously request new data from the server and display the same, without involving any page refreshes. The chart initializes itself, loads new data every n seconds, and silently updates itself to reflect the current state of data. There are two different ways you can update the LED gauge; one method directly polls data from the server while the other retrieves data using JavaScript API methods.

Realtime Data Format

When you invoke the data provider page on the server end, it outputs the new data in the real time data format. The real time data format depends on:

  • The value you want to pass.

  • Whether you are using message logger for the gauge.

  • The use of commands for the gauge, such as stop update.

Use the following JavaScript API methods used to update a pointer:

  • Use the feedData(strData) method to feed real time data to the gauge using JavaScript. The data has to be in the same format as provided by the real time data provider page.

  • Use the getData() method to return the data currently being shown by the gauge.

  • Use the setData(value) method to set the data for the gauge. The value should be within the limits of the gauge.

Configure Realtime Updates Using Server-side Script

Use the following parameters to configure real time updates using server-side scripts:

  • Use the dataStreamURL parameter to set the path of the page, which is supposed to relay real time data to the chart. If you have special characters as a part of the data stream URL, such as ? or &, you need to URL Encode the entire dataStreamURL. Note that the target page needs to be on the same sub-domain on which the chart is hosted and invoked from. Otherwise, security will restrict it from accessing the data and hence the real time feature won't work.

  • Use the refreshInterval parameter to specify the number of seconds after which The gauge will look for new data. This process will happen continuously.

  • Use the dataStamp parameter to add a constantly changing data stamp that can be added to the real time data URL, so as to maintain a state.

Refer to the code below:

{
    "chart": {
        "dataStreamURL": "https://static.fusioncharts.com/sample/dev2.0/gauge-and-widgets-guide-led-gauge-real-time-gauges-php-1.php",
        "refreshInterval": "5",
    }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Stop/Restart Updates

Use the following JavaScript API methods to stop and restart real time updates to an LED gauge:

  • Use the stopUpdate() method to stop the chart from self-updating.

  • Use the restartUpdate() method to resume real time updates to the chart, if you stopped it earlier.

Refer to the code below:

{
    "chart": {
        ...
    },
    "annotations": {
        ...
    },
    "colorRange": {
        ...
    },
},
"events": {
    'beforeRender': function(evt, args) {
        var chargePercent = 50,
            flag = 0,
            count = 0,
            startStopBtn = document.getElementById('btnSU');

        if (!startStopBtn) {
            // Create button if it does not already exist
            startStopBtn = document.createElement('input');
            startStopBtn.setAttribute('id', 'btnSU');
            startStopBtn.setAttribute('type', 'button');
            startStopBtn.setAttribute('value', 'Stop Update');

            // Append button right after chart-container
            args.container.parentNode.insertBefore(startStopBtn, args.container.nextSibling);

        }
        startStopBtn.onclick = function() {
            var btnState = document.getElementById('btnSU').value;
            if (btnState === 'Stop Update') {
                startStopBtn.setAttribute('value', 'Restart Update');
                evt.sender.stopUpdate();
            } else {
                startStopBtn.setAttribute('value', 'Stop Update');
                evt.sender.restartUpdate();
            }
        };
    }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Configure Realtime Events

FusionCharts Suite XT introduces two events, realTimeUpdateComplete and realTimeUpdateError, to track real time updates on gauges.

Use the realTimeUpdateComplete Event

The realTimeUpdateComplete event is raised whenever the real time LED gauge updates itself with new data, or more specifically, in the following cases:

  • Real time update using datastreamURL

  • Real time update using JavaScript API (using setData, feedData, and setDataForId functions)

  • Real time update of the gauge through user interaction (through edit mode)

The event arguments provided in the advanced model are as follows:

  • The eventObject argument contains the eventId, eventType, and sender properties.

  • The argumentsObject argument contains the values of the updated data and the previous data.

Refer to the code below:

{
    "chart": {
        ...
    },
    "annotations": {
        ...
    },
    "colorRange": {
        ...
    },
},
events: {
    'renderComplete': function(evt, arg) {
        var chargePercent = 50,
            flag = 0,
            count = 0;
            evt.sender.chargeInterval = setInterval(function() {

                if (flag === 0) {
                    count++;
                    if (count > 4) {
                        chargePercent -= 5;
                        count = 0;
                    }

                    if (chargePercent === 5) {
                        flag = 1;
                    }
                } else {
                    chargePercent += 5;
                    if (chargePercent === 100) {
                        flag = 0;
                    }

                }
                evt.sender.feedData("&value=" + chargePercent);
            }, 2000);
    },
    'realTimeUpdateComplete': function(evt, arg) {
        var annotations = evt.sender.annotations,
            chargePercent = evt.sender.getData(),
            minutes = 2.4 * chargePercent,
            hr = parseInt(minutes / 60),
            hr = (hr <= 0) ? "" : hr + ((hr === 1) ? " hour " : " hours "),
            min = minutes % 60,
            min = (min <= 0) ? "" : ((min < 9) ? "0" + min : min) + " minutes ";

        annotations.update('remainingTxt', {
            "text": hr + min + "remaining..."
        });
    },
    'disposed': function(evt, arg) {
        clearInterval(evt.sender.chargeInterval);
    }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Use the realTimeUpdateError Event

The realTimeUpdateError event is raised when an error occurs while performing real time update using datastreamURL. The event arguments provided in the advanced model are as follows:

  • The eventObject argument contains eventId, eventType and sender properties.

  • The argumentsObject argument contains the httpStatus property, which in turn contains the HTTP Error status value as number.

Refer to the code below:

{
    "chart": {
        ...
    },
    "annotations": {
        ...
    },
    "colorRange": {
        ...
    },
},
events: {
    'beforeRender': function(evt, args) {
        // Create container div for data table
        var msgCont = document.createElement('div');
        msgCont.setAttribute('id', 'chart-message');
        //Set style for message container
        msgCont.style.cssText = 'width : 300px; min-height: 50px; color : #cc0000; font-family : Arial, Helvetica, sans-serif; font-size : 14px; margin-top : 10px;';
        // Append container div to page
        args.container.parentNode.insertBefore(msgCont, args.container.nextSibling);
    },
    'realtimeUpdateError': function(evt, args) {
        document.getElementById('chart-message').innerHTML = "<b>Error Occured !</b><br>Status Code : " + args.httpStatus;
        evt.sender.stopUpdate();
    }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above gauge.

Troubleshoot Realtime Gauges

While accessing any of the JavaScript methods listed above, if you get an error like "... is not a function of ...", make sure that you are NOT running the chart from the local file system (C:\ , D:). Instead, run the chart from behind a server (localhost - IIS, Apache, etc.). This is because the default security settings do not allow the chart to perform JavaScript interaction on the local file system, unless otherwise specifically set.