Meter high Property
Example
Change the value of the high attribute in a gauge:
document.getElementById("myMeter").high = "60";
Try it Yourself »
Definition and Usage
The high property sets or returns the value of the high attribute in a gauge.
The high attribute specifies the range where the gauge's value is considered to be a high value. This value must be less than the max attribute value, and greater than the low and min attribute values.
Browser Support
Property | |||||
---|---|---|---|---|---|
high | Yes | Not supported | Yes | 6.0 | Yes |
Syntax
Return the high property:
meterObject.high
Set the high property:
meterObject.high = number
Property Values
Value | Description |
---|---|
number | Specifies a floating point number that is considered to be a high value |
Technical Details
Return Value: | A Number, representing a floating point number that is considered to be a high value |
---|
More Examples
Example
Return the value of the high attribute in a gauge:
var x = document.getElementById("myMeter").high;
Try it Yourself »
Related Pages
HTML reference: HTML <meter> high attribute
❮ Meter Object