How to change the text color of each row in the Blazor Gantt Chart

Answer:

We can change the text color of each row in the Blazor Gantt Chart by over-riding the CSS as like below code example.

<style>

.e-control, .e-control [class^='e-'],

.e-grid .e-rowcell:not(.e-editedbatchcell) {

color: red;

}

.e-control, .e-grid .e-rowcell {

text-decoration-line: underline;

}

.e-grid .e-rowcell,span.e-headertext,.e-header-cell-label {

cursor: alias ;

}

style>


Find the sample to change the text color of each row in the Blazor Gantt Chart from here.

Loader.
Up arrow icon