zoukankan      html  css  js  c++  java
  • 甘特图(Gantt Chart)开源项目

    1.EventCalendar
    EventCalendar control is a non-composite web control the creates a Gantt style calendar viewable by quarter periods. The events are detailed on a left hand pane, while the right hand pane shows the events as strips along a horizontal calendar. You can add a hyperlink on these strips to take the user to another document. The right hand pane is scrollable. The events can be grouped into groups which will be shown highlighted above the groups' events. The control takes in XML data for the events.
    I was asked to do this at a charity to help projects co-ordinate and know what everyone else is doing. The website allowed people to enter details of an event on a web form which then got displayed grouped by 'business initiative'. The events were stored in an MS SQL server. It was very easy to pull out the data from the DB and format it into hierarchical XML required by the Calendar Control using a DataSet that contained tables and data relations, and then using the GetXml() method of the DataSet.

    特点:B/S版,以表格形式展现进度条,以单元格合并表示一个进度的宽度。
    缺点:单元格个数过多,占用页面信息越大,生成越慢;单元格个数大于1000,IE将不能正确显示。

    2.Gantt Chart
    特点:C/S版。
    • The columns are automatically shown based on the width of the component and the time between the start date and end date. If there's more than 2 days between those dates, it will only show the date, otherwise it will show the time of the day (with min. 5 minutes apart)
    • You can set the color (incl. hover color) for each bar individually
    • The Gantt Chart automatically shows a custom scroll bar when it contains more rows that the visible area allows
    • You can easily obtain information about the bar when hovering your mouse above one
    • An easy to use multi row tooltiptext
  • 相关阅读:
    符号解析
    编译器与链接器的功能
    hook的本质就是在本原可执行文件中加东西
    Mac-O文件加载的全过程(一)
    系统在执行可执行文件几个过程
    动态库连接器–动态库链接信息(Mach-O文件格式和程序从加载到执行过程)
    load 调用的顺序
    iPhone Mach-O文件格式与代码签名
    Redis正确使用的十个技巧
    redis slowlog
  • 原文地址:https://www.cnblogs.com/wf225/p/1127571.html
Copyright © 2011-2022 走看看