I created a mat progress spinner, changed the color of the stroke, but need to know how to change the CSS for the remaining stroke path
I tried changing the color but it changed the stroke color. But I could not find anything related to path CSS. I could see circle is only getting generated when we use mat-progress-spinner
<mat-progress-spinner [color]="'orange'" [mode]="'determinate'"
[diameter]="80" strokeWidth="5" [value]=" 70">
</mat-progress-spinner>
.mat-progress-spinner circle, .mat-spinner circle {
stroke: green;
}
.mat-progress-spinner path, .mat-spinner path {
stroke: red;
}
for example, value is 70 in the above example, then for 70 it should be mapped with orange color, need help on how to show different color for the remaining 30 value
- 70 - orange color
- 30 - yellow color (need solution for this)
