ngx-beautiful-charts
Version:
A library to create charts in Angular
20 lines (19 loc) • 539 B
TypeScript
export declare class TimelineChartService {
width: number;
height: number;
xPadding: number;
yPadding: number;
componentID: number;
rectWidth: number;
rectHeight: number;
constructor();
computeRectDimensions(): void;
setValues({ componentID: componentID, width: width, height: height, xPadding: xPadding, yPadding: yPadding }: {
componentID: any;
width: any;
height: any;
xPadding: any;
yPadding: any;
}): void;
printAll(): void;
}