Wijmo UI for the Web
marker Field
wijmo.gauge Namespace > gauge_tick Interface : marker Field

A value that indicates the shape to use in drawing major tick marks.

Type: String

Default: "rect"

Syntax
var instance; // Type: wijmo.gauge.gauge_tick;
var value; // Type: string
value = instance.marker;
var marker : string;
Example
<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>
Remarks

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.

See Also

Reference

gauge_tick Interface