export declare class AxisUtil { /** * 创建坐标轴的方法 */ static createAxis(axisOption: AxisOption): any; static recalculate(axisOption: AxisOption): void; } declare class AxisOption { isTicks: boolean; width: number; height: number; AxisXNumArray?: string[]; AxisYNumArray: string[]; strokeWidth: number; arrowWidth: number; arrowHeight: number; axisColor: string; tickWidth: number; tickHeight: number; XtickDistance: number; YtickDistance: number; fontColor: string; fontScale: number; unit: string; XTextOffSet: number; YTextOffSet: number; OTextXOffSet: number; OTextYOffSet: number; YnumXOffSet: number; YnumYOffSet: number; XnumXOffSet: number; XnumYOffSet: number; } export {};