Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to render a simple bar graph with a label for each bar as axis ticks on the x-axis. Longer labels run over each other. Since svg text elements don't support word-wrapping I have been looking into alternative solutions.

Changing the category text that goes into the labels to include the proper <tspan> elements doesn't work since the text isn't set as the innerHtml but rather just the element's raw text. I have also considered post-processing the labels to remove the text and replace it with tspans, but I haven't found an elegant way to do that yet.

Unfortunately I can't use foreignObject since I need IE9 support, but many of the same markup replacement problems would apply to that solution, anyway.

Has anyone solved this problem well in the past or have any suggestions?

share|improve this question
Very similar stackoverflow.com/questions/12677878/… – Lars Kotthoff Dec 7 '12 at 14:29
Two key differences: 1. Since d3 is generating the tick labels I can't easily replace their markup (as stated in question). 2. I can't use foreign object because of lack of IE9 support (will add to question). – reluthan Dec 7 '12 at 14:43
Can you post an example of how you are aapending the text? – Duopixel Dec 7 '12 at 15:38
Text is appended through the d3.svg.axis() functionality, not by me directly. – reluthan Dec 7 '12 at 16:06
Can you not create a horizontal bar graph which will allow a lot more space for the category text (either on the y-axis or within each bar itself)? – mccannf Dec 8 '12 at 21:55
show 2 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.