Bulb Gauge

This chart type belongs to FusionWidgets XT.

Bulb gauge is used to indicate a specific dataset by utilizing a circle that indicates whether the monitored data is within defined limits, and if it is, then which limit does it belong to. Colors for the bulb can be selected to suit the application such as green for satisfactory, yellow for caution, and red for alarm.

{ "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": "Bulb Gauge", "imgSrc": "bulb-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": "28.5%", "topPosition": "16.5%", "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": "70%", "topPosition": "35%", "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": "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": "46%", "topPosition": "60%", "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" }] }, { "annotationNumber": "4", "annotationName": "Tooltip", "annotationDesc": "A tooltip is displayed when the mouse cursor hovers over a particular data point. It denotes valuable information about the data plot hovered. Learn more about it ", "annotationDescLinkPath": "/chart-guide/chart-configurations/axes#setting-axes-names", "leftPosition": "57%", "topPosition": "41.5%", "annotationLinks": [{ "linkDesc": "You can customize padding, size and other properties of tooltip, learn more about it ", "linkPath": "/chart-guide/chart-configurations/tool-tips#customize-tooltips" }, { "linkDesc": "You can also customize the text of tooltip and use values plotted on the gauge using macros, learn more about it ", "linkPath": "/chart-guide/chart-configurations/tool-tips#introduction-to-macros" } ] } ] } ] } }

Basics of the Bulb Gauge

The bulb gauge is one of the simplest gauges in all. It is used in a variety of applications including financial dashboards, machine controller screens etc., where a single value or state indicator is required.

A simple bulb gauge rendered to indicate the temperature status of deep freezers looks like this:

FusionCharts will load here..
{
    "chart": {
        "caption": "Temperature status of deep freezers",
        "upperlimit": "-5",
        "lowerlimit": "-60",
        "captionPadding": "30",
        "showshadow": "0",
        "showvalue": "1",
        "useColorNameAsValue": "1",
        "placeValuesInside": "1",
        "valueFontSize": "16",
        "plottooltext": "<span id='headerdiv' style='font-family:\"Arial\", \"Helvetica\";font-size: 13px;font-weight: bold;'>Current Temperature:</span>{br}<div id='valueDiv' style=' color: #EEEEEE; text-align:center;font-size: 25px; padding: 10px;  margin-top:5px; font-family:\"Arial\", \"Helvetica\"; font-weight: bold;'>$value°C</div>",
        "theme": "fusion"
    },
    "colorrange": {
        "color": [
            {
                "minvalue": "-60",
                "maxvalue": "-35",
                "label": "Mission control, <br> we have a situation!",
                "code": "#ff0000"
            },
            {
                "minvalue": "-35",
                "maxvalue": "-25",
                "label": "Something is just  not right!",
                "code": "#ff9900"
            },
            {
                "minvalue": "-25",
                "maxvalue": "-5",
                "label": "All well ahoy!",
                "code": "#00ff00"
            }
        ]
    },
    "value": "-5"
}
<chart caption="Temperature status of deep freezers" upperlimit="-5" lowerlimit="-60" captionpadding="30" showshadow="0" showvalue="1" usecolornameasvalue="1" placevaluesinside="1" valuefontsize="16" plottooltext="&lt;span id=&#39;headerdiv&#39; style=&#39;font-family:&quot;Arial&quot;, &quot;Helvetica&quot;;font-size: 13px;font-weight: bold;&#39;&gt;Current Temperature:&lt;/span&gt;{br}&lt;div id=&#39;valueDiv&#39; style=&#39; color: #EEEEEE; text-align:center;font-size: 25px; padding: 10px;  margin-top:5px; font-family:&quot;Arial&quot;, &quot;Helvetica&quot;; font-weight: bold;&#39;&gt;$value°C&lt;/div&gt;" theme="fusion">
    <colorrange>
        <color minvalue="-60" maxvalue="-35" label="Mission control, &lt;br&gt; we have a situation!" code="#ff0000" />
        <color minvalue="-35" maxvalue="-25" label="Something is just  not right!" code="#ff9900" />
        <color minvalue="-25" maxvalue="-5" label="All well ahoy!" code="#00ff00" />
    </colorrange>
    <value>-5</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: 'bulb',
    renderAt: 'chart-container',
    width: '300',
    height: '300',
    dataFormat: 'json',
    dataSource: {
        "chart": {
            "caption": "Temperature status of deep freezers",
            "upperlimit": "-5",
            "lowerlimit": "-60",
            "captionPadding": "30",
            "showshadow": "0",
            "showvalue": "1",
            "useColorNameAsValue": "1",
            "placeValuesInside": "1",
            "valueFontSize": "16",
            //Tooltext
            "plottooltext": "<span id='headerdiv' style='font-family:\"Arial\", \"Helvetica\";font-size: 13px;font-weight: bold;'>Current Temperature:</span>{br}<div id='valueDiv' style=' color: #EEEEEE; text-align:center;font-size: 25px; padding: 10px;  margin-top:5px; font-family:\"Arial\", \"Helvetica\"; font-weight: bold;'>$value°C</div>",
            //Theme
            "theme": "fusion"
        },
        "colorrange": {
            "color": [{
                "minvalue": "-60",
                "maxvalue": "-35",
                "label": "Mission control, <br> we have a situation!",
                "code": "#ff0000"
            }, {
                "minvalue": "-35",
                "maxvalue": "-25",
                "label": "Something is just  not right!",
                "code": "#ff9900"
            }, {
                "minvalue": "-25",
                "maxvalue": "-5",
                "label": "All well ahoy!",
                "code": "#00ff00"
            }]
        },
        "value": "-5"
    },
    "events": {
        "rendered": function(evtObj, argObj) {
            evtObj.sender.chartInterval = setInterval(function() {
                var num = (Math.floor(Math.random() * 55) * -1) - 5;
				evtObj.sender.feedData && evtObj.sender.feedData("&value=" + num);
            }, 10000);
        },
        "disposed": function(evt, arg) {
            clearInterval(evt.sender.chartInterval);
        }
    }
}
);
			chartObj.render();
		});
	</script>
	</head>
	<body>
		<div id="chart-container">FusionCharts XT will load here!</div>
	</body>
</html>

Click here to edit the above chart.

The gauge is defined by minimum and maximum values. Within that scale you can create various ranges to classify your data. Depending on the range that the data value belongs, the bulb color will change and display the value set accordingly.

Elements of the Bulb Gauge

A bulb gauge consists of the following elements:

  • Bulb (which changes color to indicate data value)

  • Value textbox

Before going into the details of each of them, let us have a look at a bulb gauge with the basic elements labeled:

Bulb-gauge

Color Range

On a bulb gauge scale, you can create any number of ranges to classify your data. For each range, you will have to specify the minimum and maximum values, a name for the range that will be displayed as the label, and the hex code for the color that will be used to indicate the range.

Each color range should have its own unique range index. For example, if a range is defined as 0-50, the next range should have the minimum value as 50 necessarily. Similarly, if the upper limit of the chart is 100, the last range should have max value as 100 for the chart to function properly.

Value Textbox

The value textbox helps you show the value indicated by the gauge in numeric terms or you can show the color range label as value for showing current status. You can also opt to hide it.

Next, we will discuss on how to create a bulb gauge.

Create a Bulb Gauge

In our first bulb gauge, we will be plotting Attrition Rate from 0-100%. The final outcome will be as shown below:

FusionCharts will load here..

Click here to edit the above chart.

To create a bulb gauge:

  • Specify the type using the type attribute. To render Bulb gauge, set bulb.

  • 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.

  • Define the minimum and maximum value which will be plotted on the gauge scale. They are termed as the lower and upper limits of the gauge scale and in this case setting them to 0 and 100 respectively will suit our purpose just fine - as we're plotting the gauge indicating a %, which cannot go below 0 or beyond 100.

  • Divide the values into predetermined regions:

    • 0-15%: Low Attrition Rate (the bulb will be shown in green when the value is in this region)

    • 15-35%: Medium Attrition Rate (bulb will be yellow in this region)

    • 35-100%: High Attrition Rate (bulb will be red in this region)

  • Pass the data value to the gauge, 12 in the above gauge. Since 12 lies in the 1st predetermined region, i.e. of the Low Attrition rate, the entire bulb is shown in green.

Set the Value Range

To set the range of the value for the bulb gauge, define the lower and upper limits of the gauge scale. To define the limits, we use the lowerLimit and upperLimit attributes of the <chart> element.

Also set the number suffix character (the character which will show up at the end the number) using the numberSuffix attribute. Refer to the code below:

{
  "chart": {
    "upperlimit": "100",
    "lowerlimit": "0",
    "numbersuffix": "%"
  }
}

There are other attributes of the <chart> element which we will not be delving into now, because of this being a really basic gauge. For a detailed list you can check the chart attributes page of bulb gauge.

Define the Color Range

As we discussed earlier, this gauge has 3 color ranges. To define the color range:

  • Use the <colorRange> element, which is an immediate child of the <chart> element.

  • Under each <colorRange> element, place a <color> element specifying a single color range.

  • The minValue attribute is used to define the lower limit of the color range and the maxValue attribute is used to define the upper limit of the color range.

  • The label attribute is used to specify a name to the particular color range and the code attribute specifies the color of the range.

Refer to the code below:

{
  "chart": {
  ...
  },
  "colorrange": {
    "color": [{
      "minvalue": "0",
      "maxvalue": "15",
      "label": "Low",
      "code": "00FF00"
    }, {
      "minvalue": "15",
      "maxvalue": "35",
      "label": "Medium",
      "code": "FFFF00"
    }, {
      "minvalue": "35",
      "maxvalue": "100",
      "label": "High",
      "code": "FF0000"
    }]
  }
}

Once done set the value of the bulb gauge using the <value> element as shown below:

"value": "12"

The chart bulb gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Now that we have created our first bulb gauge, let's see how to configure some of the properties of the bulb gauge.

Configure the Gauge Border

To configure the border of the bulb gauge refer to the code below:

{
  "chart": {
    "showgaugeborder": "1", 
    "gaugebordercolor":"666666", 
    "gaugeborderthickness":"2", 
    "gaugeborderalpha":"100" 
  }
}

For a detailed list of attributes refer to the chart attributes page of the bulb gauge.

The bulb gauge will look as shown in the image below:

FusionCharts will load here..

Click here to edit the above chart.

Use Gradient Fill Mix for the Border

The gaugeBorderColor attribute is used to apply a single solid color to the gauge border, where the border color can be different from the fill color for the gauge. Using a gradient fill mix, you can render the border in a color that is darker or lighter than the fill color used for the gauge.

The gradient fill mix renders the border in a color that is darker/lighter than the initial color in which the gauge was rendered.

To do this, we have used one token of the gradient fill mix to render the bulb border using a color that is 30% darker than the fill color using the gaugeBorderColor attribute. Refer to the code below:

{
  "chart": {
    "gaugebordercolor":"(dark-30)" 
  }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Configure the Origin and the Radius

By default, the gauge automatically determines its origin and radius based on the data you provide. However, FusionCharts Suite XT also allows you to explicitly specify the origin and radius of the gauge.

To do so follow the steps below:

  • Set the X-origin value of the gauge using the gaugeOriginX attribute.

  • Set the Y-origin value of the gauge using the gaugeOriginY attribute.

  • Set the radius of the gauge using the gaugeRadius attribute.

Refer to the code below:

{
  "chart": {
    "gaugeoriginx": "40", 
    "gaugeoriginy":"40", 
    "gaugeradius":"20" 
  }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Render the Bulb Gauge in 2D

By default, the bulb gauge is rendered with a 3D look and feel. However, you can opt to render the bulb gauge in 2D.

To do so, set the is3D attribute to 0 as shown below:

{
  "chart": {
    "is3d":"0" 
  }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Place the Value Inside the Gauge

By default, the gauge value is rendered outside the gauge. FusionCharts Suite XT allows you to render the value inside the gauge.

To do so, set the placeValueInside attribute to 1 as shown in the image below:

{
  "chart": {
    "placecvaluesinside":"1"
  }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Render the Range Name as Gauge Label

By default, the current numerical value of the gauge is rendered on the gauge. Instead, you can opt to show the name of the range within the gauge.

To do so set the useColorNameAsValue to 1 as shown in the code below:

{
  "chart": { 
    "usecolornameasvalue":"1" 
  }
}

The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

Configure the Hover Effect

FusionCharts Suite XT allows you to display hover effects for the gauge. Set the showHoverEffect attribute to 1 in order to apply the view the hover effects. Refer to the code below:

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

The gauge will look like as shown below:

Bulb

Click here to edit the above chart.

Realtime Bulb Gauge

The bulb gauge is a realtime 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 periodically, and auto-updates to reflect the current state of data. There are two different ways to update the bulb gauge; one method directly polls data from the server while the other retrieves data using JavaScript API methods.

Configure Realtime Updates Using JavaScript API

Realtime Data Format

The data provider page on the server's end, when invoked by the bulb gauge, will output the new data in the real-time data format.

The real-time data format for gauges depends on:

  • Value to be passed

  • Whether you're using Message Logger for the chart?

  • Commands for the chart - like stop update etc.

Let's quickly see examples of each one of them.

Data Value Update

In the simplest form, if you're looking to update the bulb gauge, you need to output the data in the following format:

&value=34

Here, the output is a single value, 34. So, when FusionWidgets XT will read this value, it will update the chart by setting its value to 34 (if the data is within range). The gauge will look like as shown below:

FusionCharts will load here..

Click here to edit the above chart.

For a detailed list of JavaScript API used to configure real-time updates refer to the API reference page.

You can also configure using server-side scripts. For a detailed list of attributes refer to the chart attributes page.

Stop/Restart Updates

In order to stop the chart from polling the server for any more real-time updates, send the following command from server to do so:

&stopUpdate=1

After stopping the update, it can be restarted either using user interaction (right click context menu) or using the restartUpdate() property as shown below:

&restartUpdate=1
FusionCharts will load here..

Click here to edit the above chart.

Configure Realtime Events

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

A real-time bulb gauge configured to listen to the realTimeUpdateComplete event looks like this:

FusionCharts will load here..

Click here to edit the above chart.

A bulb gauge configured to listen to the realTimeUpdateError event looks like this:

FusionCharts will load here..

Click here to edit the above chart.

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 interactions on the local file system.