JqxRadialGauge: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 1: | Line 1: | ||
[[File:Jqxradialgauge.png]] | [[File:Jqxradialgauge.png]] | ||
== 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. | |||
== Properties and Methods == | |||
See the complete documentation at jqWidget's site: | |||
http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgauge/jquery-gauge-getting-started.htm | |||
== Example == | |||
<pre> | |||
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 | |||
</pre> | |||
== Output == | |||
See above. | |||
[[Category:Language Reference]] | [[Category:Language Reference]] | ||
Revision as of 19:24, 16 March 2013
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.
Properties and Methods
See the complete documentation at jqWidget's site: http://www.jqwidgets.com/jquery-widgets-documentation/documentation/jqxgauge/jquery-gauge-getting-started.htm
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.
