Skip to main content
1-Visitor
July 9, 2015
Question

ProgressGauge_ExtensionPackage100.zip

  • July 9, 2015
  • 0 replies
  • 903 views

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);

         }

  }

    };