ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
13 lines (12 loc) • 404 B
TypeScript
import { AxisLabel } from './axisLabel';
export declare class CartesianAxisLabel extends AxisLabel {
/**
* If specified and axis labels may collide, they are rotated to reduce collisions. If the
* `rotation` property is specified, it takes precedence.
*/
autoRotate?: boolean;
/**
* Rotation angle to use when autoRotate is applied.
*/
autoRotateAngle: number;
}