原創|其它|編輯:郝浩|2012-11-09 17:42:36.000|閱讀 287 次
概述:Aspose.Tasks提供根據不同時間尺度的設置來渲染甘特圖的功能。根據這些時間刻度設置(包括日,月,季度)有多個選項可用來渲染甘特圖圖像。
# 界面/圖表報表/文檔/IDE等千款熱門軟控件火熱銷售中 >>
Aspose.Tasks提供根據不同時間尺度的設置來渲染甘特圖的功能。根據這些時間刻度設置(包括日,月,季度)有多個選項可用來渲染甘特圖圖像。使用這些選項可以將甘特圖渲染進一張圖片中。本文詳細描述了這一過程。
ImageSaveOptions類的Timescale屬性決定了項目的Timescale時間尺度設置。這個時間尺度默認為天,當然也可使用月或著季度為單位。下面是代碼示例:
C# Project project = new ProjectReader().Read("NewProductDev.mpp"); // Save to one page image (Timescale.days by default) project.Save("NewProductDevDays.jpeg", new ImageSaveOptions(SaveFileFormat.JPEG)); // Save to one page image (Timescale.ThirdsOfMonths) ImageSaveOptions options = new ImageSaveOptions(SaveFileFormat.JPEG); options.Timescale = Timescale.ThirdsOfMonths; project.Save("NewProductDevThirdsOfMonths.jpeg", options); // Save to one page image (Timescale.Months) options.Timescale = Timescale.Months; project.Save("NewProductDevMonths.jpeg", options); // There is IRender property for compliance with Project.Export interface options.RenderParam = new BaseImageRenderParam(null, Point.Empty, new Size(800, 600), 100, 0, true); project.Save("NewProductDevRenderOptions.jpeg", options); VB.NET Dim project As Project = New ProjectReader().Read("NewProductDev.mpp") 'Save to one page image (Timescale.days by default) project.Save("NewProductDevDays.jpeg", New ImageSaveOptions(SaveFileFormat.JPEG)) 'Save to one page image (Timescale.ThirdsOfMonths) Dim options As ImageSaveOptions = New ImageSaveOptions(SaveFileFormat.JPEG) options.Timescale = Timescale.ThirdsOfMonths project.Save("NewProductDevThirdsOfMonths.jpeg", options) 'Save to one page image (Timescale.Months) options.Timescale = Timescale.Months project.Save("NewProductDevMonths.jpeg", options) 'There is IRender property for compliance with Project.Export interface Dim baseImageRenderParam As BaseImageRenderParam = New BaseImageRenderParam(Nothing, Point.Empty, New Size(800, 600), 100, 0, True) project.Save("NewProductDevRenderOptions.jpeg", options)
本站文章除注明轉載外,均為本站原創或翻譯。歡迎任何形式的轉載,但請務必注明出處、不得修改原文相關鏈接,如果存在內容上的異議請郵件反饋至chenjj@fc6vip.cn
文章轉載自:慧都控件網