ComponentOne Studio - Cloud Business App Edition
Gauge

Gauge provides a dynamic and unique way to display information, by delivering the precise graphical representation of the data. Gauges have an advantage over simple labels as they also display ranges, thereby enabling users to instantly figure out whether the current value falls within a particular range or lies beyond its start and end points. Users have the flexibility to easily adjust the size and appearance of the control, or set gauge direction without having to code manually.

Isml.js
Copy Code
myapp.Gauge.LinearGauge_render = function (element, contentItem) {
        var gauge = new c1.cba.LinearGauge($(element), contentItem);
};
myapp.Gauge.BulletGraph_render = function (element, contentItem) {
        var gauge = new c1.cba.BulletGraph($(element), contentItem);
};
myapp.Gauge.RadialGauge_render = function (element, contentItem) {
        var gauge = new c1.cba.RadialGauge($(element), contentItem);
};

 

 


Copyright (c) GrapeCity, inc. All rights reserved.

Documentation Feedback  |  Product Support Forum