12 lines
378 B
CSS
12 lines
378 B
CSS
/* Use this selector to override bar styles on bar charts. Bars are also strokes so you have maximum freedom in styling them. */
|
|
.ct-series-a .ct-bar {
|
|
/* Colour of your bars */
|
|
stroke: red;
|
|
/* The width of your bars */
|
|
stroke-width: 20px;
|
|
/* Yes! Dashed bars! */
|
|
stroke-dasharray: 20px;
|
|
/* Maybe you like round corners on your bars? */
|
|
stroke-linecap: round;
|
|
}
|