Hi Stephen,
Thanks for contacting Syncfusion products.
Please find the following responses for your queries:
Query #1: Display the dates on the left side
We have created incident to track the status of this feature under your account. Please log on to our support website to check for further updates
Query #2: Change the column heading (i.e. RESOURCES)
We have prepared the sample to meet your requirement changing the column header “RESOURCES” text, which can be viewed in the following link.
In the above sample, we have used the $.extend method to change the label text. Please refer to the following code example.
<code>
$(function () {
$.extend(ej.Schedule.Locale["en-US"], { Resources: "Techies" });// Here we are passing the text as Techies for Resources to display the column header as Techies instead of the RESOURCES
var dManager = ej.DataManager(window.ScheduleDatas).executeLocal(ej.Query().take(10));
----------------------------
----------------------------
});
</code>
Regards,
Velmurugan