Browse our Products
Aspose.Tasks for .NET 21.1 Release Notes
This page contains release notes information for Aspose.Tasks for .NET 21.1.
All Changes
Key | Summary | Issue Type |
---|---|---|
TASKSNET-4597 | Add support for ‘Task Summary Name’ field. | Enhancement |
TASKSNET-4631 | Fix incorrect position of not fit task labels when rendering Gantt chart view | Bug |
TASKSNET-4628 | Fix incorrect error message shown when trying to read a list of projects from empty Project Online account | Bug |
TASKSNET-4599 | Fix application of bar styles with non-default names when rendering Gantt chart view | Bug |
TASKSNET-4588 | Fix exception when trying to add a new task in XER project | Bug |
TASKSNET-4601 | Fix duplicated resources when reading XER of P6XML file | Bug |
Pay attention, if you use Aspose.Tasks for .NET Standard as DLL reference (not NuGet version), please update ‘System.Drawing.Common’ and ‘System.Text.Encoding.CodePages’ dependencies up to date.
Public API and Backwards Incompatible Changes
The following public enumerations were added: | Description |
---|---|
Aspose.Tasks.Visualization.Shape.Diamond | Indicates Diamond shape. |
Aspose.Tasks.Field.TaskSummaryName | The name of the summary task associated with the task. |
The following public methods and properties were added: | Description |
---|---|
Aspose.Tasks.View.#ctor(ViewScreen) | Initializes a new instance of the |
Examples
Related issue: TASKSNET-4597 - Field ‘TaskSummaryName’ can be used in view’s columns
In order to show ‘TaskSummaryName’ column in exported document the next code sample can be used:
var field = new TableField
{
Field = Field.TaskSummaryName,
Title = "Task Summary Name",
Width = 30
};
project.Views.ToList()[0].Table.TableFields.Add(field);