Chart.js/test/fixtures/element.line/skip/last.js
2021-02-10 08:21:39 -05:00

28 lines
503 B
JavaScript

module.exports = {
config: {
type: 'line',
data: {
datasets: [
{
data: [{x: 0, y: 10}, {x: 5, y: 0}, {x: 15, y: -10}, {x: NaN, y: -5}],
borderColor: 'red',
fill: true,
tension: 0
}
]
},
options: {
scales: {
x: {type: 'linear', display: false, min: 0, max: 20},
y: {display: false, min: -15, max: 15}
}
}
},
options: {
canvas: {
height: 256,
width: 512
}
}
};