UNPKG

@antv/s2

Version:

effective spreadsheet render core lib

19 lines (18 loc) 740 B
import { Group } from '@antv/g'; import { type AxisComponent } from '@antv/g2'; import { CellBorderPosition, ColCell } from '@antv/s2'; import type { PivotChartSheet } from '../pivot-chart-sheet'; export declare class AxisColCell extends ColCell { protected spreadsheet: PivotChartSheet; protected axisShape: Group; get cellType(): any; protected getBorderPositions(): CellBorderPosition[]; protected isBolderText(): boolean; protected getInteractedCells(): import("@antv/s2").CellMeta[]; protected initCell(): void; protected getColResizeArea(): Group | undefined; protected isCrossColumnLeafNode(): boolean; drawTextShape(): void; getChartOptions(): AxisComponent; drawAxisShape(): void; }