Currently, I am working with a chartist graph where the colors are defined at a framework level. However, I need to make changes to the colors for a specific graph without altering the framework level settings. I attempted to create a .less file, but unfortunately, the changes are not being reflected.
Are there any alternative methods to adjust the color of a bar graph? Also, if I add more bars, I would like the colors to be different for each.
For reference, the link to the framework changes for chartist can be found here.
The color changes need to be made in the file located at here.
I have included a snippet of code in the .less file, but the changes are not showing up. Any suggestions or tips would be greatly appreciated.
.ct-series-a .ct-bar {
stroke: white;
stroke-width: 20px;
}
.ct-series-b .ct-bar {
stroke: blue;
stroke-width: 20px;
}
Thank you.