import { jsx } from '@antv/f-engine'; export default (props, context) => { const { coord, range, position, layout, style, background, barStyle } = props; const { top, height } = coord; const { left, width } = layout; const [start, end] = range?.y || range?.x; const barTop = height * start; const barHeight = height * (end - start); return ( ); };