📅  最后修改于: 2023-12-03 15:16:56.508000             🧑  作者: Mango
jQWidgets jqxScheduler 是一个基于 jQuery 的日程安排插件。其中的 rowsHeight 属性可以用来设置每个时间段(row)的高度。
$(selector).jqxScheduler({
rowsHeight: Number
});
$("#scheduler").jqxScheduler({
width: "100%",
height: "100%",
date: new Date(2022, 1, 1),
rowsHeight: 50, // 设置每个时间段的高度为 50px
// ... 其他属性
});