Articles in this section
Category / Section

How to Change Font Color of Swimlane Header in Angular Diagram?

3 mins read

Header was the primary element for swimlanes. The header property of swimlane allows you to define its textual description and to customize its appearance in Angular Diagram.
To customize the font color of the swimlane header, you can use the color property within the style property within the swimlane header annotation. This allows greater flexibility in designing your diagrams.

Refer to the below code snippet for customization of font color in swimlane header

header: {
         annotation: {
           content: 'SALES PROCESS FLOW CHART',
           //update font color for swimlane header
           style: { fill: 'black', color: 'yellow' },
         },
       }, 

The below code example shows how to customize the font color of swimlane header at run time using using color picker when the swimlane is selected

//update font color for swimlane header at run time using color picker
 public fontColor(): void {
   if(this.diagram.selectedItems.nodes[0] && this.diagram.selectedItems.nodes[0].shape.type == "SwimLane")
   {
     let currentColor = (document.getElementById('fontColor') as HTMLSelectElement).value;
     (this.diagram.selectedItems.nodes[0].shape as ShapeModel | any).header.annotation.style.color = currentColor;
     this.diagram.dataBind();
   }
 }
 // Initializes the nodes for the diagram.
 public nodes: NodeModel[] = [
   {
     shape: {
       type: 'SwimLane',
       orientation: 'Horizontal',
       // customize the swimlane header
       header: {
         annotation: {
           content: 'SALES PROCESS FLOW CHART',
           //update font color for swimlane header
           style: { fill: 'black', color: 'yellow' },
         },
       },
       lanes: [
         {
           id: 'stackCanvas1',
           height: 100,
         },
       ],
       phases: [
         {
           id: 'phase1',
           offset: 170,
           header: { annotation: { content: 'Phase' } },
         },
       ],
       phaseSize: 20,
     },
     offsetX: 300,
     offsetY: 200,
     height: 200,
     width: 350,
   },
 ];

Sample : Click here

Conclusion
I hope you enjoyed learning how to change font color of swimlane header in Angular Diagram.

You can refer to our Angular Diagram feature tour page to know about its other groundbreaking feature representations and documentation, and how to quickly get started for configuration specifications. You can also explore our Angular Diagram example to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied