Skip to content

Commit

Permalink
Updated package, Main features sample improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
DlhSoftTeam committed Aug 23, 2019
1 parent 4d2dbf1 commit a62784b
Show file tree
Hide file tree
Showing 593 changed files with 82,196 additions and 80,559 deletions.
1 change: 1 addition & 0 deletions GanttChartHyperLibraryDemos/Demos/Demos.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
<IISExpressWindowsAuthentication />
<IISExpressUseClassicPipelineMode />
<UseGlobalApplicationHostFile />
<Use64BitIISExpress />
</PropertyGroup>
<ItemGroup>
<Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* Assembly: DlhSoft.ProjectData.GanttChart.HTML.Controls,
Company: DlhSoft,
Product: Project Data Modern Library,
Version: 5.3.12.2,
Copyright: Copyright © 2012-2017 DlhSoft,
Version: 5.3.14.0,
Copyright: Copyright © 2012-2019 DlhSoft,
Title: Project Data Gantt Chart HTML Controls,
Description: Project Data Gantt Chart related HTML client components */

Expand Down Expand Up @@ -126,6 +126,8 @@ declare module DlhSoft.Controls {
setItemIsMilestone(item: Item, value: boolean): void;
getItemEffort(item: Item): number; setItemEffort(item: Item, value: number): void; getItemCompletedEffort(item: Item): number; setItemCompletedEffort(item: Item, value: number): void;
getItemTotalEffort(item: Item): number; getItemTotalCompletedEffort(item: Item): number;
setItemTotalEffort(item: Item, value: number): void; setItemTotalCompletedEffort(item: Item, value: number): void;
setItemHasFixedEffort(item: Item, value: boolean): void;
getItemDuration(item: Item): number; setItemDuration(item: Item, value: number): void;
getItemCompletion(item: Item): number; setItemCompletion(item: Item, value: number): void;
isItemCompleted(item: Item): boolean; setItemAsCompleted(item: Item): void;
Expand Down Expand Up @@ -185,7 +187,7 @@ declare module DlhSoft.Controls {
/** Prints the content using a temporary document and window. */
print(exportSettings?: ExportSettings): void;

getRootItems(): Item[]; getLeafItems(): Item[];
getRootItems(): Item[]; getLeafItems(): Item[]; getSummaryItems(): Item[];
getProjectStart(): Date; getProjectFinish(): Date;
getProjectEffort(): number; getProjectCompletedEffort(): number;
getProjectTotalEffort(): number; getProjectTotalCompletedEffort(): number;
Expand Down Expand Up @@ -299,6 +301,12 @@ declare module DlhSoft.Controls {
isSummaryEnabled?: boolean;
isParentSummarizationEnabled?: boolean;

/** When set to true it would ensure that the original item's total effort is preserved when duration is updated by updating assignment allocation units, assuming that the item has resources assigned. */
hasFixedEffort?: boolean;

/** When specifically set to false, overrides GanttChartView.areTaskDependencyConstraintsEnabled = true (auto-scheduling) for an item, setting up manual scheduling. */
areDependencyConstraintsEnabled?: boolean;

displayRowIndex?: number;

/** Optional array of parts to be represented for this group item in the chart area. */
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* Assembly: DlhSoft.ProjectData.GanttChart.HTML.Controls,
Company: DlhSoft,
Product: Project Data Modern Library,
Version: 5.3.12.2,
Copyright: Copyright © 2012-2017 DlhSoft,
Version: 5.3.14.0,
Copyright: Copyright © 2012-2019 DlhSoft,
Title: Project Data Gantt Chart HTML Controls,
Description: Project Data Gantt Chart related HTML client components */

Expand Down Expand Up @@ -126,6 +126,8 @@ declare module DlhSoft.Controls {
setItemIsMilestone(item: Item, value: boolean): void;
getItemEffort(item: Item): number; setItemEffort(item: Item, value: number): void; getItemCompletedEffort(item: Item): number; setItemCompletedEffort(item: Item, value: number): void;
getItemTotalEffort(item: Item): number; getItemTotalCompletedEffort(item: Item): number;
setItemTotalEffort(item: Item, value: number): void; setItemTotalCompletedEffort(item: Item, value: number): void;
setItemHasFixedEffort(item: Item, value: boolean): void;
getItemDuration(item: Item): number; setItemDuration(item: Item, value: number): void;
getItemCompletion(item: Item): number; setItemCompletion(item: Item, value: number): void;
isItemCompleted(item: Item): boolean; setItemAsCompleted(item: Item): void;
Expand Down Expand Up @@ -185,7 +187,7 @@ declare module DlhSoft.Controls {
/** Prints the content using a temporary document and window. */
print(exportSettings?: ExportSettings): void;

getRootItems(): Item[]; getLeafItems(): Item[];
getRootItems(): Item[]; getLeafItems(): Item[]; getSummaryItems(): Item[];
getProjectStart(): Date; getProjectFinish(): Date;
getProjectEffort(): number; getProjectCompletedEffort(): number;
getProjectTotalEffort(): number; getProjectTotalCompletedEffort(): number;
Expand Down Expand Up @@ -299,6 +301,12 @@ declare module DlhSoft.Controls {
isSummaryEnabled?: boolean;
isParentSummarizationEnabled?: boolean;

/** When set to true it would ensure that the original item's total effort is preserved when duration is updated by updating assignment allocation units, assuming that the item has resources assigned. */
hasFixedEffort?: boolean;

/** When specifically set to false, overrides GanttChartView.areTaskDependencyConstraintsEnabled = true (auto-scheduling) for an item, setting up manual scheduling. */
areDependencyConstraintsEnabled?: boolean;

displayRowIndex?: number;

/** Optional array of parts to be represented for this group item in the chart area. */
Expand Down
Loading

0 comments on commit a62784b

Please sign in to comment.