Highcharts tooltip in columns that are both left aligned like Quicksight tooltip

I am trying to have 2 columns in highcharts’ tooltip that are both left aligned like in Quicksight.

Current in QS:
image

Currently in Highcharts visuals:
image

Here is my code:

"tooltip": {
    "headerFormat": "<span style='font-size:10px'>{point.key}</span><table><br/>",
    "pointFormat": "<span style='color:{series.color}'>{series.name}</span>: <b>{point.y:,.1f}</b> ({point.change/1000}K)<br/>",
    "footerFormat": "</table>",
    "shared": true,
    "useHTML": true
  }

Hi @adevaraj,
There are still some limitations within QuickSight’s highchart options when it comes to dealing with tool tips. Here’s some documentation on Highcharts API reference that would allow you to alter the alignment:

And here’s a demo:

https://jsfiddle.net/gh/get/library/pure/highcharts/highcharts/tree/master/samples/highcharts/tooltip/footerformat/

Let me know if this does not work for your case as I believe some others have also been hitting roadblocks when it comes to the Highchart tool tips and I can mark this as a feature request.