It is possible to remove legend in Pie Chart?
I don't think it is right now, but it should be an easy PR
I also needed to hide it while using the pie chart. I did it by disabling the code in library pie-chart.js
You can now use hasLegend={false} to do that
hasLegend={false} doesn't re-center the pie-chart, so now it looks silly and lopsided for me. I can hack it with margin but it's not really crossplatform / crossphonemodel as I won't know by how many pixels exactly to translate it
hasLegend={false} doesn't re-center the pie-chart, so now it looks silly and lopsided for me. I can hack it with margin but it's not really crossplatform / crossphonemodel as I won't know by how many pixels exactly to translate it
what is the right way to center a the pie chart with no legend?
Is not the way, but almost do it:
width={width}
paddingLeft={Data.width / 4}
hasLegend={false}
Most helpful comment
Is not the way, but almost do it:
width={width} paddingLeft={Data.width / 4} hasLegend={false}