JqxRadialGauge

From NSB App Studio
Revision as of 17:19, 7 April 2016 by Ghenne (talk | contribs) (→‎Properties and Methods)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Description

jqxRadialGauge displays an indicator within a range of values. Gauges can be used in a table or matrix to show the relative value of a field in a range of values in the data region, for example, as a KPI. It supports SVG and VML rendering.

jqWidgets is a commercial product, which depending on how you use it, requires a license fee. Complete details are on jqWidget's website. The product is well supported.

Properties and Methods

This control is well documented on the jqWidget's website: http://www.jqwidgets.com/jquery-widgets-documentation/.

Example

Sub Main()
  $("#RadialGauge1").jqxGauge("max", 100)
  ' "max" sets the maxium value of the gauge or full scale deflection
  $("#RadialGauge1").jqxGauge("value", 50)
  ' "value" is the new pointer value for the gauge
End Sub

Function Slider1_onchange()
  temp = Slider1.value
  $("#RadialGauge1").jqxGauge("value", temp)
End Function

Output

See above.