import { EntityEidType, BasicInfoAtomType, IPointValueAtom } from '../data-type'; export interface ColumnarHeatMapEntityAtomType { type: string; brushDiameter: number; mappingValueRange: Array; columnarWidth: number; mappingHeightRange: Array; enableGap: boolean; gradientSetting: Array; } export interface ColumnarHeatMapType extends EntityEidType, Partial { columnarHeatMapStyle?: Partial; points?: IPointValueAtom; }