提供3000多款全球软件/控件产品
针对软件研发的各个阶段提供专业培训与技术咨询
根据客户需求提供定制化的软件开发服务
全球知名设计软件,显著提升设计质量
打造以经营为中心,实现生产过程透明化管理
帮助企业合理产能分配,提高资源利用率
快速打造数字化生产线,实现全流程追溯
生产过程精准追溯,满足企业合规要求
以六西格玛为理论基础,实现产品质量全数字化管理
通过大屏电子看板,实现车间透明化管理
对设备进行全生命周期管理,提高设备综合利用率
实现设备数据的实时采集与监控
利用数字化技术提升油气勘探的效率和成功率
钻井计划优化、实时监控和风险评估
提供业务洞察与决策支持实现数据驱动决策
翻译|使用教程|编辑:秦林|2022-10-24 10:57:24.430|阅读 389 次
概述:这篇文章给大家带来dhtmlxGantt如何自定义时间的跨度。
# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>
相关链接:
这篇文章给大家带来dhtmlxGantt如何自定义时间的跨度。
在本部分中,您将找到有关如何自定义和配置时间刻度以显示或隐藏非工作时间跨度的示例。此外,即使启用了skip_off_time模式,您也会找到一个示例,说明如何从比例开始隐藏具有非工作时间的单元格。
下面我们为您提供一个自定义比例示例,该示例适用于工作时间为 08:00 至 12:00 和 13:00 至 17:00 的最常见情况。
gantt.date.day_custom_start = function (date) { return date; }; gantt.date.add_day_custom = function (date, inc) { const nextDate = new Date(date); if (nextDate.getHours() < 8) { // Statement 1 const diff = 8 - nextDate.getHours(); return gantt.date.add(nextDate, diff * inc, "hour"); } if (nextDate.getHours() == 8) { // Statement 2 return gantt.date.add(nextDate, 9 * inc, "hour"); } if (nextDate.getHours() == 17) { // Statement 3 return gantt.date.add(nextDate, 15 * inc, "hour"); } return gantt.date.add(date, 8 * inc, "hour"); }; gantt.config.scales = [ { unit: "day_custom", step: 1, date: "%d %H:00" }, ]; // gantt.config.skip_off_time = true; gantt.config.work_time = true; gantt.config.correct_work_time = true; gantt.plugins({ auto_scheduling: true, }); gantt.setWorkTime({ hours: ["8:00-12:00", "13:00-17:00"] }); gantt.config.duration_unit = "minute"; gantt.config.duration_step = 1; gantt.config.time_step = 1; gantt.config.round_dnd_dates = false;
假设最早的任务将在 2025 年 4 月 1 日 08:00 开始,并考虑甘特将如何根据gantt.config.skip_off_time的值在此任务之前添加偏移量。
我们将从在时间尺度中隐藏非工作时间的配置开始:
gantt.config.skip_off_time = true;
在这种情况下,为了创建第一个“小时”单元格,甘特图将减少最早任务的小时数,直到时间达到前一天的工作时间。
因此,31 15:00是将显示在第一个单元格上的值。
要了解甘特如何计算所有其他单元格,让我们禁用gantt.config.skip_off_time:
gantt.config.skip_off_time = false;正如我们在上面发现的,时间刻度的第一个单元格将具有31 15:00的值。但是现在最早的任务之前的空单元格的数量会增加,因为非工作时间的单元格也会显示在秤上。
为了计算这些单元格的值,应用以下逻辑:
2025 年 4 月 1 日 08:00 0f 是我们最早任务的日期。
如您所见,如果禁用skip_off_time属性,甘特图可以在具有最短日期的任务之前添加多个空单元格。如果您希望甘特图只创建一个单元格而不管该属性是否启用,您可以应用以下逻辑:
gantt.date.add_day_custom = function (date, inc) { // When the work_time is enabled and the tasks are loaded, // calculate the date for the first cell. // Go from right to left starting from the minimal date, // get the closest date within the working hours // and subtract 1 hour from this date if (inc < 0 && gantt.getTaskByTime().length) { return gantt.calculateEndDate({ start_date: date, duration: -1, unit: gantt.config._duration_unit }) } // the beginning of the working hours (workday); // calculate when the workday ends if (date.getHours() == 8) { return gantt.calculateEndDate(date, 8); } // the end of the working hours (workday); // calculate when the next working day begins if (date.getHours() == 17) { return gantt.date.add(date, 15 * inc, "hour"); } // if tasks are loaded, calculate the working dates for the second cell of scale // if tasks are absent, calculate the dates for all scale cells date = gantt.date.add(date, 1 * inc, "day"); gantt.date.day_start(date); date = gantt.getClosestWorkTime({ date, dir: "future" }) return date }; gantt.config.scales = [ { unit: "day_custom", step: 1, date: "%d %H:%i" }, ]; gantt.config.work_time = true; gantt.config.skip_off_time = false;
这是隐藏非工作时间时比例在模式下的外观:
以下是它们显示时的样子(gantt.config.skip_off_time已禁用):
dhtmlxGantt是用于跨浏览器和跨平台应用程序的功能齐全的Gantt图表,可满足项目管理控件应用程序的所有需求,是最完善的甘特图图表库。了解更多DhtmlxGantt相关内容和资讯,欢迎在线咨询或者私信我获取正版试用版及报价。
甘特图控件交流群:764148812 欢迎进群交流讨论
本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn
本文探讨 SQL Server 中 NULL 和空值之间的区别,并讨论如何有效地处理它们。
Unity 是一款功能极其丰富的游戏引擎,允许开发人员将各种媒体集成到他们的项目中。但是,它缺少最令人兴奋的功能之一 - 将 Web 内容(例如 HTML、CSS 和 JavaScript)直接渲染到 3D 场景中的纹理上的能力。在本文中,我们将介绍如何使用 DotNetBrowser 在 Unity3D 中将 Web 内容渲染为纹理。
DevExpress v24.2帮助文档正式发布上线了,请按版本按需下载~
本教程将向您展示如何用MyEclipse构建一个Web项目,欢迎下载最新版IDE体验!
一个用于构建跨浏览器Web应用和移动应用的强大JavaScript UI库。
DHTMLX Scheduler一个类似于Google日历的强大JavaScript日程安排控件。
DHTMLX Gantt针对您的解决方案的交互式JavaScript / HTML5甘特图
服务电话
重庆/ 023-68661681
华东/ 13452821722
华南/ 18100878085
华北/ 17347785263
客户支持
技术支持咨询服务
服务热线:400-700-1020
邮箱:sales@cahobeh.cn
关注我们
地址 : 重庆市九龙坡区火炬大道69号6幢