10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import { MappingDatum } from '../../interface';
|
|
import GeometryLabel from './base';
|
|
import { LabelPointCfg } from './interface';
|
|
/**
|
|
* 柱状图 label
|
|
*/
|
|
export default class IntervalLabel extends GeometryLabel {
|
|
protected setLabelPosition(labelPointCfg: LabelPointCfg, mappingData: MappingDatum, index: number, position: string): void;
|
|
}
|