Add test for issue 9085 (#9091)

This commit is contained in:
Evert Timberg 2021-05-14 16:58:02 -04:00 committed by GitHub
parent 953b23b4ef
commit 927f24a809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,12 @@
import { ChartOptions } from '../../index.esm';
const chartOptions: ChartOptions<'line'> = {
scales: {
x: {
type: 'time',
time: {
unit: 'year'
}
},
}
};