import { jsx } from '@antv/f-engine'; import { GeometryProps } from '../geometry'; import { withInterval } from '../interval'; import { DataRecord } from '../../chart/Data'; export interface PictorialProps extends GeometryProps { symbol?: any; } export default class Pictorial extends withInterval({}) { props: PictorialProps; render() { const { props, context } = this; const { px2hd } = context; const { symbol: Symbol } = px2hd(props); const records = this.mapping(); return ( {records.map((record) => { const { key, children } = record; return ( {children.map((item) => { const { xMax, xMin, yMax, yMin } = item; return ; })} ); })} ); } }