Premium support for our pure JavaScript UI components


Post by kevin.snps »

Hi team,

I am using a schedulerpro with dependency, and want to change the color of all arrows which links events when using dependency. Can you tell me how to do it?

Thanks.

Attachments
change_arrow_color.jpg
change_arrow_color.jpg (66.36 KiB) Viewed 475 times

Post by mats »

You can do this with simple CSS

.b-sch-dependency {
    stroke-dasharray: 5, 5;
    stroke-width: 2;
    stroke : red;
}

.b-sch-dependency-arrow{
    fill: red;
}

Post by kevin.snps »

Hi Mats,

thank you for the reply. I was able to change the color of the arrow!


Post Reply