You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
600 B
10 lines
600 B
|
4 months ago
|
import type { GenericAnimation } from '../../animation';
|
||
|
|
import { Component } from '../../core';
|
||
|
|
import { Group } from '../../shapes';
|
||
|
|
import type { AxisOptions, AxisStyleProps, RequiredAxisStyleProps } from './types';
|
||
|
|
export type { ArcAxisOptions, ArcAxisStyleProps, AxisOptions, AxisStyleProps, LinearAxisOptions, LinearAxisStyleProps, } from './types';
|
||
|
|
export declare class Axis extends Component<AxisStyleProps> {
|
||
|
|
constructor(options: AxisOptions);
|
||
|
|
render(attributes: RequiredAxisStyleProps, container: Group, specificAnimation?: GenericAnimation): import("@antv/g-lite").IAnimation[];
|
||
|
|
}
|