I'm trying to use HighCharts 2.3.5 to get names and percentages to line up in a legend.
Right now the legend looks like this:
symbol aValue aPercentage
symbol somethingElse aPercentage
symbol v aPercentage
What I want is this:
symbol aValue aPercentage
symbol somethingElse aPercentage
symbol v aPercentage
I've resorted to something that sure seems hacky. I set left:0px;right:0px; and then add some nbsps. The div ends up looking like this:
<div style="left:0px;top:0px;display:inline-block;position:absolute;">
44.7%
</div>
Is there a better way to do this?
Thanks!