Solved
CSS for formatting the reference lines of a line chart
Could you possibly share the CSS for changing a reference line color if you still have it--from this topic?
Could you possibly share the CSS for changing a reference line color if you still have it--from this topic?
@supports (ptcs-style-unit: "PTCS-CHART-COORD") {
[part~="y-refline"]:nth-child(1){
background: repeating-linear-gradient(to right, red, red 4px, transparent 5px, transparent 8px);
width: 100%;
height: 2px;
}
[part~="y-refline"]:nth-child(2){
background: repeating-linear-gradient(to right, green, green 4px, transparent 5px, transparent 8px);
width: 100%;
}
[part~="y-refline"]:nth-child(3){
background: repeating-linear-gradient(to right, blue, blue 4px, transparent 5px, transparent 8px);
width: 100%;
}
[part~="y-refline"]:nth-child(4){
background: repeating-linear-gradient(to right, rgb(243 192 17), rgb(243 192 17) 4px, transparent 5px, transparent 8px);
width: 100%;
}
}

Try to use the above CSS.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.