Chart.js/test/fixtures/scale.time/ticks-minunit.js
Jukka Kurkela 021561072b
Disable all plugins when options.plugins = false (#8098)
Disabling all plugins when options.plugins = false
2020-11-23 17:58:03 -05:00

28 lines
384 B
JavaScript

module.exports = {
threshold: 0.01,
config: {
type: 'line',
data: {
labels: ['2015-01-01T20:00:00', '2015-01-02T21:00:00'],
},
options: {
scales: {
x: {
type: 'time',
bounds: 'ticks',
time: {
minUnit: 'day'
}
},
y: {
display: false
}
}
}
},
options: {
spriteText: true,
canvas: {width: 256, height: 128}
}
};