在C#中,我使用此代码设置时间轴视图的 Dx 属性
var timeline = new TimelineView("timeline", "EmployeeId");
timeline.Dx = 174;
但是如何使用jQuery实现这一目标?我想设置现有调度程序的Dx属性。
答案 0 :(得分:1)
在客户端时间轴上,配置存储在 scheduler.matrix 属性中。 您可以通过以下方式访问某些配置:
scheduler.matrix["viewName"]
例如:
scheduler.matrix["timeline"].dx = 174;
scheduler.updateView();//apply changes