Linear gauges are characterized by a linear scale which can be horizontal or vertical. They typically display a metric as a percentage of the length of a linear scale.
Create a horizontal or vertical gauge by setting the direction property to Left, Right, Up, or Down.
Example:
import * as gauge from '@grapecity/wijmo.gauge';
// create a linear gauge
var myLinearGauge = new gauge.LinearGauge('#myLinearGauge', {
isReadOnly: false,
min: 0,
max: 100,
value: 75,
direction: 'Right'
});