steps.pager Boolean
(default: true)
Specifies whether the pager will be rendered on the current step or not.
Example
<div id="wizard"></div>
<script>
$("#wizard").kendoWizard({
steps: [{
title: "Initial step",
pager: false
}]
});
</script>