This method returns the GaugeArrow instance that represents the arrow in the gauge control. The GaugeArrow object can be used to manipulate the appearance and behavior of the arrow in the gauge.
var gaugeControl = ix.api.dom.getControl("<GUID>");
var gaugeArrow = gaugeControl.getGaugeArrow();
Retrieves the current settings of the gauge control.
This method returns the options object that contains the current configuration settings of the gauge control. These settings include properties such as minimum and maximum values, color, size, and other gauge-specific options.
var gaugeControl = ix.api.dom.getControl("<GUID>");
var gaugeSettings = gaugeControl.getGaugeSettings();
Reloads the gauge control.
The HTML element that represents the gauge control.
Optional
object: { An optional object containing the animated
property, which determines whether the gauge's changes are animated.
var gaugeControl = ix.api.dom.getControl("<GUID>");
gaugeControl.reload(ix.util.getHTML("<GUID>"), { animated: true });
Reloads the gauge based on the provided settings.
A JSON object containing the new settings for the gauge.
var gaugeControl = ix.api.dom.getControl("<GUID>");
var gaugeSettings = gaugeControl.getGaugeSettings();
gaugeControl.reloadJS(gaugeSettings);
The Gauge Control is a versatile component designed to display various types of measurements in a visually intuitive manner.
It is particularly suitable for representing real-time data such as speed, volume levels, pressure, temperature, or filling levels. The gauge provides a clear and immediate visual indication of these measurements, making it an ideal choice for monitoring and control applications.