mirror of
https://github.com/pa11y/pa11y-dashboard.git
synced 2025-09-24 22:31:15 +00:00
Add dashed lines to graph
This commit is contained in:
@@ -27,6 +27,7 @@ $(document).ready(function(){
|
||||
|
||||
var graphOptions = {
|
||||
series: {
|
||||
dashes: { show: false, lineWidth: 3 },
|
||||
lines: { show: true },
|
||||
points: { show: true },
|
||||
hoverable: true
|
||||
@@ -43,6 +44,11 @@ $(document).ready(function(){
|
||||
lines: {
|
||||
lineWidth: 3
|
||||
},
|
||||
points: {
|
||||
fill: true,
|
||||
fillColor: "rgb(255, 255, 255)"
|
||||
},
|
||||
shadowSize: 0,
|
||||
grid: {
|
||||
backgroundColor: '#fff',
|
||||
borderColor: '#808080',
|
||||
@@ -168,9 +174,25 @@ $(document).ready(function(){
|
||||
|
||||
function getData() {
|
||||
return [
|
||||
{ color: 'rgb(216, 61, 45)', label: 'Errors', data: data.error },
|
||||
{ color: 'rgb(168, 103, 0)', label: 'Warnings', data: data.warning },
|
||||
{ color: 'rgb(23, 123, 190)', label: 'Notices', data: data.notice }
|
||||
{
|
||||
color: 'rgb(216, 61, 45)',
|
||||
label: 'Errors',
|
||||
data: data.error
|
||||
},
|
||||
{
|
||||
color: 'rgb(168, 103, 0)',
|
||||
label: 'Warnings',
|
||||
data: data.warning,
|
||||
lines: { show: false },
|
||||
dashes: { show: true }
|
||||
},
|
||||
{
|
||||
color: 'rgb(23, 123, 190)',
|
||||
label: 'Notices',
|
||||
data: data.notice,
|
||||
lines: { show: false },
|
||||
dashes: { show: true, dashLength: 5 }
|
||||
}
|
||||
];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user