jQuery.wijmo.wijlineargauge Namespace > options type : orientation Field |
Default value: 'horizontal'
Sets the orientation of the gauge, with a setting of horizontal showing values across the gauge from left to right, and a setting of vertical showing values along the gauge from top to bottom.
Javascript (Usage) | |
---|---|
var value; // Type: string value = jQuery.wijmo.wijlineargauge.options.orientation; |
Javascript (Specification) | |
---|---|
|
// This sample shows how to create vertical linear gauge. $(document).ready(function () { $("#lineargauge1").wijlineargauge({ value: 31, orientation: "vertical" }); });