Chart.js/test/fixtures/controller.bar/stacking/logarithmic.js

37 lines
562 B
JavaScript
Raw Normal View History

module.exports = {
config: {
type: 'bar',
data: {
datasets: [{
data: [10, 100, 10, 100],
backgroundColor: '#ff0000'
}, {
data: [100, 10, 0, 100],
backgroundColor: '#00ff00'
}],
labels: ['label1', 'label2', 'label3', 'label4']
},
options: {
legend: false,
title: false,
datasets: {
bar: {
barPercentage: 1,
}
},
scales: {
x: {
type: 'category',
display: false,
stacked: true,
},
y: {
type: 'logarithmic',
display: false,
stacked: true
}
}
}
}
};