Alexander Scholz
Alexander Scholz

Reputation: 2100

rangeSelector doesn't show up

When I add a series async to my highchart and navigator is set to false, the range selector doesn't show up and is not added to DOM. When I add the series synchronous or set navigator: true the range selector shows up.

Is this a bug or is there a error in my code?

I provided an example: http://jsfiddle.net/kz44n38n/1/

Upvotes: 1

Views: 520

Answers (1)

Anatoli
Anatoli

Reputation: 690

Add next code:

xAxis : {
            min: 0,
            max : 100
        }

Upvotes: 1

Related Questions