如何在ChartDirector Python中创建多层甘特图.pdfVIP

如何在ChartDirector Python中创建多层甘特图.pdf

  1. 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
如何在ChartDirector Python中创建多层甘特图

如何在ChartDirector Python 中创建多层甘特图 在本文中主要是使用ChartDirector 的 Python 版本来创建出多层级的甘特图, 而在此次的示例演示中将会包含两个图层,包含计划和实际情况的甘特图, XYChart.addBoxWhiskerLayer 创建的两个图层,使用 BaseBoxLayer.setDataWidth 来进行在栏的顶部的图层的宽度的设置,以便它不 会挡住底部的图层。 具体示例的源代码如下,和大家一起分享分享: 1 #!/usr/bin/python 2 from pychartdir import * 3 4 # the names of the tasks 5 labels = [Market Research, Define Specifications, Overall 6 Archiecture, 7 Project Planning, Detail Design, Software Development, Test 8 Plan, 9 Testing and QA, User Documentation] 10 11# the planned start dates and end dates for the tasks 12startDate = [chartTime(2004, 8, 16), chartTime(2004, 8, 30), 13chartTime(2004, 9, 13), 14 chartTime(2004, 9, 20), chartTime(2004, 9, 27), chartTime(2004, 1510, 4), 16 chartTime(2004, 10, 25), chartTime(2004, 11, 1), chartTime(2004, 1711, 8)] 18endDate = [chartTime(2004, 8, 30), chartTime(2004, 9, 13), 19chartTime(2004, 9, 27), 20 chartTime(2004, 10, 4), chartTime(2004, 10, 11), chartTime(2004, 2111, 8), 22 chartTime(2004, 11, 8), chartTime(2004, 11, 22), chartTime(2004, 2311, 22)] 24 25# the actual start dates and end dates for the tasks up to now 26actualStartDate = [chartTime(2004, 8, 16), chartTime(2004, 8, 27), 27chartTime(2004, 9, 28 9), chartTime(2004, 9, 18), chartTime(2004, 9, 22)] 29actualEndDate = [chartTime(2004, 8, 27), chartTime(2004, 9, 9), 30chartTime(2004, 9, 27 31 ), chartTime(2004, 10, 2), chartTime(2004, 10, 8)] 32 33# Create a XYChart object of size 620 x 280 pixels. Set background color 34to light 35# green (ccffcc) with 1 pixel 3D border effect. 36c = XYChart(620, 280, 0xccffcc, 0x000000, 1) 37 38# Add a title to the chart using 15 points Times Bold Itatic font, with 39white 40# (ffffff) text on a dark green (0x6000) background 41c.addTitle(Multi-Layer Gantt Chart Demo, timesbi.ttf, 15, 0xffffff 42 ).setBackground(0x006000) 43 44# Set the plotarea at (140, 55) and of size 460 x 200 pixels. Use 45alternative

文档评论(0)

asd522513656 + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档