DHTMLX-Scheduler .NET-如何更改时间线单元的column_width

时间:2019-12-07 09:07:32

标签: c# asp.net-mvc scheduler dhtmlx dhtmlx-scheduler

我目前在ASP.NET MVC中使用DHTMLX - Scheduler .NET

如何在TimelineView中设置事件单元格的宽度?

我看到客户端的属性 column_width正常工作,但是服务器端无法使用此道具。

注意:默认宽度为100px(我启用了水平滚动)

现在,我要设置为100像素到50像素。

有人对此问题有任何想法吗?

非常感谢您的帮助。

enter image description here

1 个答案:

答案 0 :(得分:2)

缺少此属性,仅从nuget软件包https://www.nuget.org/packages/DHTMLX.Scheduler.NET/4.0.2的v4.0.2版开始添加(在您的问题后发布)

因此,如果将库更新为最新版本,则应该能够在服务器上使用TimelineView.ColumnWidth属性:

var timeline = new TimelineView("timeline", "section_id");
timeline.ColumnWidth = 90;