[+] Add mark area below 70

This commit is contained in:
Hykilpikonna
2019-11-07 21:35:45 -05:00
parent cdbd101428
commit e7f29ad0bf
+14 -3
View File
@@ -63,7 +63,7 @@ export default class OverallLine extends Vue
} }
}, {yAxis: 100} }, {yAxis: 100}
], ],
// 80 - 100 // 80 to 100
[ [
{ {
yAxis: 100, yAxis: 100,
@@ -74,16 +74,27 @@ export default class OverallLine extends Vue
} }
}, {yAxis: 80} }, {yAxis: 80}
], ],
// 70 - 80 // 70 to 80
[ [
{ {
yAxis: 80, yAxis: 80,
itemStyle: itemStyle:
{ {
color: 'rgb(255,242,226)', color: 'rgb(255,244,213)',
opacity: 0.1 opacity: 0.1
} }
}, {yAxis: 70} }, {yAxis: 70}
],
// Below 70 (Fail)
[
{
yAxis: 70,
itemStyle:
{
color: 'rgb(255,190,184)',
opacity: 0.1
}
}, {yAxis: -1000}
] ]
] ]
} }