var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: String value = instance.position;
var position : String;
A value that indicates the position of the major tick marks in relation to the edge of the face.
Type: String
Default: "inside"
var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: String value = instance.position;
var position : String;
<script type="text/javascript"> $(document).ready(function () { $("#radialgauge1").wijradialgauge({ value: 90, tickMajor: { position: "inside", style: { fill: "purple", stroke: "#1E395B"}, factor: 2.5, marker: 'diamond', visible: true, offset: 27, interval: 20 } }); }); </script>