chart.js
Version:
Simple HTML5 charts using the canvas element.
49 lines (39 loc) • 815 B
text/typescript
import { AnyObject } from '../../basic';
import { CartesianScaleOptions, Chart, Scale } from '../../index.esm';
export type TestScaleOptions = CartesianScaleOptions & {
testOption?: boolean
}
export class TestScale<O extends TestScaleOptions = TestScaleOptions> extends Scale<O> {
static id: 'test';
getBasePixel(): number {
return 0;
}
testMethod(): void {
//
}
}
declare module '../../index.esm' {
interface CartesianScaleTypeRegistry {
test: {
options: TestScaleOptions
}
}
}
Chart.register(TestScale);
const chart = new Chart('id', {
type: 'line',
data: {
datasets: []
},
options: {
scales: {
x: {
type: 'test',
position: 'bottom',
testOption: true,
min: 0
}
}
}
});
Chart.unregister([TestScale]);