I am using the Bar Chart in React-D3 :
My x-axis labels are slamming into each other, and I want to rotate them for readability,
an issue solved here for D3 without React rendering: http://www.d3noob.org/2013/01/how-to-rotate-text-labels-for-x-axis-of.html
How do I fit this solution into the React-D3 package?
Where can I access the 'transform' property on 'text' or 'tick'?
I tried to pass in a prop as 'xAxisTransform' on BarChart.js, but it wasn't registering.
Should I use the tickFormat function to change the text on the ticks, if so, how?
Can/should ticks be manipulated from /common/axes/AxisTicks.js ? https://github.com/esbullington/react-d3/issues/162