var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: any value = instance.style;
var style : any;
A value that indicates the fill color and outline (stroke) of the major tick mark. For information on other style options that you can use, please see Style Options.
Type: Object
Default: {fill: "#1E395B", stroke:"none"}
var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: any value = instance.style;
var style : any;
<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>