Hello Venkat,
Please try following:
svg.v-m-root g.v-m-main g.v-m-plot g.v-modules g.v-module g g.v-datalines g.v-axis1 path.v-lines:nth-child(1) {
stroke: red !important;
}
svg.v-m-root g.v-m-main g.v-m-plot g.v-modules g.v-module g g.v-datalines g.v-axis1 path.v-lines:nth-child(2) {
stroke: blue !important;
}
svg.v-m-root g.v-m-main g.v-m-plot g.v-modules g.v-module g g.v-datalines g.v-axis2 path.v-lines:nth-child(1) {
stroke: violet !important;
}
svg.v-m-root g.v-m-main g.v-m-plot g.v-modules g.v-module g g.v-datalines g.v-axis2 path.v-lines:nth-child(2) {
stroke: green !important;
}
This css works for me. Let me know if this solves your issue.
Thanks,
Nithya V