12 lines
316 B
SCSS
Raw Normal View History

/* Sets the default colors for the visualization colors. When rendering a series of data, the color
order for each item should always be the same */
@for $i from 1 through 18 {
$color: get-dataviz-color($i);
.viz-chart {
.highcharts-color-#{$i - 1} {
fill: $color;
stroke: $color;
}
}
}