I want to have title text similar as described at this answer. I wanted to specify top margin to ensure place for it. However the margin.top seems to have no effect at all.
I specify the margin like this in javascript:
chart.margin({
top: 1000,
right: 100,
bottom: 0,
left: 100
});
All other margins are working as expected. Try my short demo at http://jsfiddle.net/6DgVP/2/ (credits go to the original example I modified) . All margins are working except top.
Is it a known issue? Can I fix it somehow?