Chart.js/test/fixtures/controller.line/borderDashOffset/scriptable.js

54 lines
854 B
JavaScript
Raw Normal View History

module.exports = {
config: {
type: 'line',
data: {
2019-03-21 09:06:39 +01:00
labels: [0, 1, 2, 3],
datasets: [
{
// option in dataset
2019-03-21 09:06:39 +01:00
data: [1, 1, 1, 1],
borderColor: '#ff0000',
borderDash: [20],
borderDashOffset: function(ctx) {
return ctx.datasetIndex === 0 ? 5.0 : 0.0;
}
},
{
// option in element (fallback)
2019-03-21 09:06:39 +01:00
data: [0, 0, 0, 0]
}
]
},
options: {
legend: false,
title: false,
elements: {
line: {
2019-03-21 09:06:39 +01:00
borderColor: '#00ff00',
borderDash: [20],
borderDashOffset: function(ctx) {
return ctx.datasetIndex === 0 ? 5.0 : 0.0;
},
fill: false,
},
point: {
2019-03-21 09:06:39 +01:00
radius: 10,
}
},
2019-03-21 09:06:39 +01:00
layout: {
padding: 32
},
scales: {
x: {display: false},
y: {display: false}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};