Custom Elements Documentation

Getting Started

jqxGauge is a HTML Element which displays an indicator within a range of values. gauges can be used in a table or matrix to show the relative value of a field in a range of values in the data region, for example, as a kpi. it supports svg and vml rendering.

Every UI element from jQWidgets toolkit needs its JavaScript files to be included in order to work properly.

The first step is to create html page and add links to the javascript files and css dependencies to your project.

The jqxGauge element requires the following files:

<script type="text/javascript" src="../scripts/webcomponents-lite.min.js"></script>
<script type="text/javascript" src="../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../jqwidgets/jqxcore.elements.js"></script>
<script type="text/javascript" src="../jqwidgets/jqxdata.js"></script>
<script type="text/javascript" src="../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../jqwidgets/jqxgauge.js"></script>
The next step is to add the html element within the body of the html page.

<jqx-gauge settings="elementSettings"></jqx-gauge>
The last step is to initialize the element settings:
<script type="text/javascript">
JQXElements.settings["elementSettings"] =
{
ticksMinor:ticksMinor, ticksMajor:ticksMajor, ranges:ranges,value:60, theme:"light"
}
</script>
To call a function(method), you need to pass the method name and parameters(if any) in the jqxGauge's instance.
<script>
window.onload = function () {
var element = document.querySelector("jqx-gauge");
element.disable();
}
</script>
To get the result of a function after calling it, you can use the following syntax:
<script>
window.onload = function () {
var element = document.querySelector("jqx-gauge");
var result = element.val();
}
</script>
To set a property(option), you need to use the property name and value(s) along with the jqxGauge's instance.
window.onload = function() {
document.querySelector("jqx-gauge").animationDuration = 400;
}
You can also set properties of HTML Elements by using Attributes. Traditionally, attributes are used to set the initial state of an element. Properties with camelCase naming have dash-based attributes. For example: A property "dataSource" will have an attribute called "data-source".

To get a property(option), you need to use the property name along with the jqxGauge's instance.
window.onload = function() {
var propertyValue = document.querySelector("jqx-gauge").animationDuration;
}

Event binding can be defined in the HTML as an attribute. The syntax is: 'on-' and the event's name. Event Names with camelCase naming have dash-based attributes. The attribute's value is the event handler's name. The addEventListener function can also be used for event binding.

<script>
window.onload = function () {
var element = document.querySelector("jqx-gauge");
element.addEventListener("valueChanging", function(event){
// Your code here
});
}
</script>

Example

<!DOCTYPE html>
<html lang="en">
<head>
<title id='Description'>Gauge Custom Element</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1 maximum-scale=1 minimum-scale=1" />
<link rel="stylesheet" href="../../jqwidgets/styles/jqx.base.css" type="text/css" />
<link rel="stylesheet" href="../../styles/demos.css" type="text/css" />
<script type="text/javascript" src="../../scripts/webcomponents-lite.min.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxcore.elements.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxdraw.js"></script>
<script type="text/javascript" src="../../jqwidgets/jqxgauge.js"></script>
<script type="text/javascript">
var ranges = [{ startValue: 0, endValue: 55, style: { fill: '#4bb648', stroke: '#4bb648' }, endWidth: 5, startWidth: 1 },
{ startValue: 55, endValue: 110, style: { fill: '#fbd109', stroke: '#fbd109' }, endWidth: 10, startWidth: 5 },
{ startValue: 110, endValue: 165, style: { fill: '#ff8000', stroke: '#ff8000' }, endWidth: 13, startWidth: 10 },
{ startValue: 165, endValue: 220, style: { fill: '#e02629', stroke: '#e02629' }, endWidth: 16, startWidth: 13 }]
var ticksMinor = { interval: 5, size: '5%' };
var ticksMajor = { interval: 15, size: '10%' }
JQXElements.settings["gaugeSettings"] =
{
ticksMinor:ticksMinor, ticksMajor:ticksMajor, ranges:ranges,value:60, theme:"light"
}
</script>
</head>
<body>
<jqx-gauge settings="gaugeSettings"></jqx-gauge>
</body>
</html>

The result of the above code is: