Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
ProgressGauge_ExtensionPackage
Event Add Version
this.resize = function(width,height) {
var self = this;
if( self.width !== width || self.height !== height ) {
self.width = width;
self.height = height;
self.properties['Width'] = width;
self.properties['Height'] = height;
self.drawGauge();
if (self.lastValue !== undefined) {
self.updateGauge(self.lastValue, self.lastDataRow);
}
}
};