var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: string value = instance.marker;
var marker : string;
A value that indicates the shape to use in drawing major tick marks.
Type: String
Default: "rect"
var instance; // Type: wijmo.gauge.gauge_tick; var value; // Type: string value = instance.marker;
var marker : 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>
Valid Values:
Important: In order to use the cross marker shape, you must specify a color for the stroke setting of the style option. The other shapes use the fill setting, but since the cross is not a closed shape, fill has no effect, and we must use the outline (stroke) color.