Chart.js/test/fixtures/controller.line/showLines/false.js

29 lines
462 B
JavaScript
Raw Normal View History

module.exports = {
description: 'should draw all elements except lines',
config: {
type: 'line',
data: {
datasets: [{
data: [10, 15, 0, -4],
label: 'dataset1',
borderColor: 'red',
backgroundColor: 'green'
}],
labels: ['label1', 'label2', 'label3', 'label4']
},
options: {
legend: false,
title: false,
showLines: false,
scales: {
x: {
display: false
},
y: {
display: false
}
}
}
}
};