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