scichart
Version:
Fast WebGL JavaScript Charting Library and Framework
19 lines (18 loc) • 465 B
TypeScript
/**
* Properties to describe axis layout state
*/
export declare class AxisLayoutState {
axisSize: number;
additionalLeftSize: number;
additionalRightSize: number;
additionalTopSize: number;
additionalBottomSize: number;
clear(): void;
}
export declare class PolarAxisLayoutState extends AxisLayoutState {
leftScale: number;
rightScale: number;
topScale: number;
bottomScale: number;
clear(): void;
}