UNPKG

@antv/s2

Version:

effective spreadsheet render core lib

18 lines (17 loc) 690 B
import { Group } from '@antv/g'; import { type AxisComponent } from '@antv/g2'; import { CellBorderPosition, RowCell } from '@antv/s2'; import type { PivotChartSheet } from '../pivot-chart-sheet'; export declare class AxisRowCell extends RowCell { 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 getResizesArea(): Group | undefined; drawTextShape(): void; getChartOptions(): AxisComponent; drawAxisShape(): void; }