Class PdfLabelSettings
Represents a class that provides the style configuration for the appearance of labels in a Pdf Gantt chart.
Inherited Members
Namespace: Syncfusion.Blazor.Gantt
Assembly: Syncfusion.Blazor.dll
Syntax
public class PdfLabelSettings
Constructors
PdfLabelSettings()
Declaration
public PdfLabelSettings()
Properties
LeftLabel
Gets or sets the left label settings for the taskbar of the Gantt chart Pdf export.
Declaration
public PdfElementStyle LeftLabel { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfElementStyle | An instance of PdfElementStyle. |
Remarks
Label appears to the left of taskbar element.
LeftLabelValue
Gets or sets the text displayed as the left label for tasks in the Gantt chart PDF export.
Declaration
public string LeftLabelValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the left label text. The default value is |
Remarks
This property is configured using the PdfQueryTaskbarInfo event, which allows for the dynamic assignment of left label text for tasks in the Gantt chart PDF export. This can include task names, resource names, or other custom information.
RightLabel
Gets or sets the right label settings for the taskbar of the Gantt chart Pdf export.
Declaration
public PdfElementStyle RightLabel { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfElementStyle | An instance of PdfElementStyle. |
Remarks
Label appears to the right of taskbar element.
RightLabelValue
Gets or sets the text displayed as the right label for tasks in the Gantt chart PDF export.
Declaration
public string RightLabelValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the right label text. The default value is |
Remarks
This property is configured using the PdfQueryTaskbarInfo event, which allows for the dynamic assignment of right label text for tasks in the Gantt chart PDF export. This can include task names, resource names, or other custom information.
TaskLabel
Gets or sets the task label settings for the taskbar of the Gantt chart Pdf export.
Declaration
public PdfElementStyle TaskLabel { get; set; }
Property Value
| Type | Description |
|---|---|
| PdfElementStyle | An instance of PdfElementStyle. |
Remarks
Label appears on the taskbar element.
TaskbarLabelValue
Gets or sets the text displayed as the taskbar label for tasks in the Gantt chart PDF export.
Declaration
public string TaskbarLabelValue { get; set; }
Property Value
| Type | Description |
|---|---|
| string | A string representing the taskbar label text. The default value is |
Remarks
This property is configured using the PdfQueryTaskbarInfo event, which allows for dynamic assignment of taskbar label text for tasks in the Gantt chart PDF export. This can include task names, resource names, or other custom information relevant to the task.