Name

global.Gauge

Description

Minor functions to manipulate gauges

Script

gs.include("PrototypeServer");

var Gauge = Class.create();

Gauge.prototype = {
initialize: function(id) {
   this.gauge = new GlideGauge(id);
   this.id = id;
},

setName: function(name) {
   this.gauge.setName(name);
   this.gauge.setTitle(name);
   this.gauge.update();
},

z: function() {}
}

Sys ID

2018e7d9c0a80165005c45f7664c92b1

Offical Documentation

Official Docs: