Hello,
How can I change the color of the grey lines ?
Thanks,
Cristina
Hi @Cristina ,
You can select the CSS selector for the connection lines the following way:
.poch-lines-surface path {
stroke: red !important;
}
Hello Vladimir,
Thanks a lot, it works!
Best regards,
Cristina
Hi @v.uspenskii - this isn't working on Org Chart for SharePoint Online 4.0.7. Any other thoughts on how I can change the connecting line color?
Hi @CPrompt,
You can use the following code for Org Chart v4:
.poch-node__lines-surface path {
stroke: red !important;
}
Hope this helps!