stepper.indicator Boolean
(default: true)
Specifies whether the Stepper instance will display the indicators of its steps.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
stepper: {
indicator: false
},
steps: ["Initial step", "Second step", "Third step"]
});
</script>