indicator Boolean
(default: true)
Indicates whether the Steps in the Stepper will render their indicator element (the icon or number placed in a circle above the Step label).
Example
<nav id="stepper"></nav>
<script>
$("#stepper").kendoStepper({
indicator: false,
steps: ["Initial step", "Second step", "Third step"]
});
</script>