20 lines
663 B
CSS
20 lines
663 B
CSS
/* Use this selector to override the line style on a given series */
|
|
.ct-series-a .ct-line {
|
|
/* Set the colour of this series line */
|
|
stroke: red;
|
|
/* Control the thikness of your lines */
|
|
stroke-width: 5px;
|
|
/* Create a dashed line with a pattern */
|
|
stroke-dasharray: 10px 20px;
|
|
}
|
|
|
|
/* This selector overrides the points style on line charts. Points on line charts are actually just very short strokes. This allows you to customize even the point size in CSS */
|
|
.ct-series-a .ct-point {
|
|
/* Colour of your points */
|
|
stroke: red;
|
|
/* Size of your points */
|
|
stroke-width: 20px;
|
|
/* Make your points appear as squares */
|
|
stroke-linecap: square;
|
|
}
|