var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: number value = instance.offset;
var offset : number;
A value that indicates the distance in pixels from the edge of the face to draw the major tick marks. The numeric labels are drawn a few pixels outside of the major tick marks.
Type: Number
Default: 27
var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: number value = instance.offset;
var offset : number;
<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>