Thank you for contacting Syncfusion support.
We have prepared the below sample to display the Start time in month view appointments using template option and kindly visit the below link to know more about the template support.
Kindly refer the below code example used in the sample.
<Code>
<script id="apptemplate" type="text/x-jsrender">
{{if View == "month"}}
<div style="height:100%">
<div style='float:left; '>{{:~format(StartTime,"month")}}</div><br>
<div>{{:Subject}}</div>
</div>
{{else}}
<div style="height:100%">
<div style='float:left; '>{{:~format(StartTime,"strTime")}}</div>
<div style='float:left; '>{{:~format(EndTime)}}</div> <br>
<div>{{:Subject}}</div>
</div>
{{/if}}
</script>
function _getTime(time, type) {
if (type == "strTime")
return ej.globalize.format(new Date(time), "hh:mm tt -");
else
return ej.globalize.format(new Date(time), "hh:mm tt");
}
$.views.helpers({ format: _getTime });
</Code>
Regards,
Karthigeyan