@Jam_Kirko
Could you possibly share the CSS for changing a reference line color if you still have it--from this topic?
Hi @JK_10744682
@supports (ptcs-style-unit: "PTCS-CHART-COORD") {
[part~="refline"]:nth-child(1){
background-color:yellow;
}
[part~="refline"]:nth-child(2){
background-color:red;
}
}
This is very helpful. Do you know of a way to get the colors to be by reference line number rather than coordinates? I want specific reference lines to be certain color but the CSS you showed has it so that the highest value line is one color and so on.