Adding gradiant

This commit is contained in:
Axel 2021-12-27 23:59:25 +01:00
parent f20adb7f28
commit 84ec4847d9
2 changed files with 22 additions and 16 deletions

File diff suppressed because one or more lines are too long

View file

@ -258,23 +258,29 @@
curve: 'smooth', curve: 'smooth',
}, },
fill: { fill: {
colors: [function({ value, seriesIndex, w }) { type: 'gradient',
if(value < 1) {
return '#2acdc7'
}
else if (value >= 1 && value < 3) {
return '#e97a39'
}
else {
return '#e93949'
}
}],
type: "solid",
gradient: { gradient: {
shade: 'dark',
shadeIntensity: 1, shadeIntensity: 1,
opacityFrom: 0.7, type: 'vertical',
opacityTo: 0.9, opacityFrom: 1,
stops: [0, 100] opacityTo: 1,
colorStops: [
{
offset: 0,
color: "#EB656F",
opacity: 1
},
{
offset: 20,
color: "#FAD375",
opacity: 1
},
{
offset: 40,
color: "#61DBC3",
opacity: 1
}]
} }
} }
} }