score:2

Accepted answer

If you can change HTML, then simply put table before Highcharts container and set proper styles (float, width). For example you can also use two divs: http://jsfiddle.net/68qdew8g/

<div style="float: left; width: 30%;">
  <table border="1" class="highchart" data-graph-container-before="1" data-graph-type="column">
      ...
  </table>
</div>
<div id="words" style="width:70%;float:left;"></div>

Related Query

More Query from same tag