Display dotted line report as a different box color

Is it possible to display dotted line reports with a different box color? I think I can figure out most of it if there’s a way to determine if a report is a dotted line report or not prior to rendering?

This is a solution for Org Chart 3. Check the reply for Org Chart 4 below.

Hello @cbenson,

Thank you for your question.

You can change the box color using a code like this:

.poch-web-part .poch-dotted-line .rocItemTemplate{
  background-color: #ff01d8;
  border-color: #ff01d8;
}

Please, insert it into the Custom CSS tab of the configuration wizard:

Best Regards,
Anna Dorokhova
Plumsail Team

1 Like

Thanks Anna, works great!

1 Like

Update for Org Chart 4.

.poch-node_dotted-line .poch-group-item__card {
  background-color: pink !important;
  border-color: red !important;
}