Files
boc/landvex-admin-v2/node_modules/chartjs-node-canvas/dist/backgroundColourPlugin.d.ts
T

10 lines
383 B
TypeScript
Raw Normal View History

import { Chart as ChartJS, Plugin as ChartJSPlugin } from 'chart.js/auto';
export declare class BackgroundColourPlugin implements ChartJSPlugin {
private readonly _width;
private readonly _height;
private readonly _fillStyle;
readonly id: string;
constructor(_width: number, _height: number, _fillStyle: string);
beforeDraw(chart: ChartJS): boolean | void;
}