I could see `rect` being better than circles given that bars are rectangle. If
you _do_ want them to render as rects, you can do something like (example
[here](https://github.com/williaster/data-ui/blob/master/packages/demo/examples/01-xy-chart/AreaDifferenceSeriesExample.jsx)
/
[storybook](https://williaster.github.io/data-ui/?selectedKind=xy-chart&selectedStory=AreaDifferenceSeries&full=0&addons=0&stories=1&panelRight=0)).
tldr
```javascript
shape={({ fill, width, height }) => (
<svg width={width} height={height}>
<rect width={width} height={height} fill={fill} />
</svg>
)}
```
[ Full content available at:
https://github.com/apache/incubator-superset/pull/5758 ]
This message was relayed via gitbox.apache.org for [email protected]