0

I am using Stock High Charts, I want to display all the labels in x-axis (the labels show city names). How do I achieve this?

        xAxis: {
            labels: {
                rotation: -50,
                step: 1                        
            }                   
        },
Abhishek
  • 196
  • 11
  • 1
    Do you have some live demo, like jsFiddle? I guess you need to set `labels.step = 1`, but Highstock doesn't support categorized axis, so it's hard to guess how did you achieved that. – Paweł Fus Oct 27 '14 at 09:37
  • Thanks Pawel for the response. Please check edited question. – Abhishek Oct 27 '14 at 09:40
  • 2
    Unfortunately, that doesn't explain anything :) Post full Highcharts code with some data-sample or recreate issue on jsfiddle. – Paweł Fus Oct 27 '14 at 09:41

1 Answers1

0

Increase the value of height. That's the solution I had to apply.

Example code:

chart: {
        type: 'bar',
        height: 1000
    }
ross
  • 2,684
  • 2
  • 13
  • 22
dgomezan
  • 1
  • 2