hakkim
hakkim

Reputation: 658

rangeSelector input and export button misalignment

I have highchart with rangeSelector. My problem is when I disable the rangeSelector label the rangeSelector input overlapping with export button.

Here is the Javascript code for it:

Highcharts.stockChart('container', {

    rangeSelector: {
        labelStyle: {
            display: 'none',
        },
    },

    series: [{
        data: usdeur
    }]
});

Here is the fiddle for the same

Can anyone please help me to solve this?

Upvotes: 1

Views: 40

Answers (1)

User863
User863

Reputation: 20039

Try visibility: 'hidden' as

labelStyle - CSS styles for the labels - the Zoom, From and To texts

Fiddle

OR Using lang options such as

  • rangeSelectorZoom
  • rangeSelectorFrom
  • rangeSelectorTo

Fiddle

Upvotes: 2

Related Questions