-1

I'm configuring my chart in highcharts and everything works fine but the noData position.

This is my options:

optionsChart = {
    chart: {
    type: 'bar'
  },
  lang: {
    noData: 'No data available'
  },
  noData: {
    position: {
      align: 'end'
    }
  }
}

the text is setted but it's not aligned, how can I solve it?

cucuru
  • 3,456
  • 8
  • 40
  • 74

1 Answers1

1

It work with left, center or right

noData:{
    position:{
        align:'right'
    }
},

Fiddle

Core972
  • 4,065
  • 3
  • 31
  • 45