Open
Description
I am building a heatmap
<XYPlot width={300} height={300}>
<XAxis />
<YAxis />
<HeatmapSeries
className="heatmap-series-example"
data={ this.state.data }
/>
</XYPlot>
this.state.data is just a mapped data with x,y, and color
And this is the view
I want the x,y intersection to be at 0,0. Or to remove the padding around the heatmap.
How can I do this?
Thanks!