3

Current Chart

Desired Chart

Does anyone know to accomplish this? I really don't want to go back to divs.

Thank you!

Community
  • 1
  • 1
Gustavo Matias
  • 3,508
  • 3
  • 27
  • 30
  • did you workout any thing? can you show anything you have tried to achieve what you desired? – Strikers Jun 04 '15 at 05:19
  • 1
    Disable labels on xAxis, then set [pointPadding](http://api.highcharts.com/highcharts#plotOptions.bar.pointPadding) / [groupPadding](http://api.highcharts.com/highcharts#plotOptions.bar.groupPadding) and use [datalabels formatter](http://api.highcharts.com/highcharts#plotOptions.series.dataLabels.formatter) or [renderer](http://api.highcharts.com/highcharts#Renderer) – Sebastian Bochan Jun 04 '15 at 09:29
  • 1
    Thanks @SebastianBochan! you gave me the right direction, it worked beautifully with data labels! – Gustavo Matias Jun 06 '15 at 14:11

1 Answers1

2

You can set the offset for x axis label by using the following options of xAxis property.

labels: {
           x : 25,
           y : -25,
           align: 'left'
        }

Working fiddle created here - http://jsfiddle.net/sherin81/dtcLn8sm/

Sherin Mathew
  • 1,141
  • 13
  • 19