Titan
Titan

Reputation: 45

Step line in range selector with Highstock

I'm using a step-line graph with highstock but i'm having trouble having a step line range selector. You can see an exemple in jsfiddle here.

My graph is like i want it to be : step line. However i tried to use step : true in range selector or even plotOptions but that doesn't work. I don't find anything in the documentation for it neither.

Upvotes: 0

Views: 113

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

You should set a step parameter, also for navigator serie.

navigator: {
            series:{
                type:'line',
                step: true
            }
},

Example: http://jsfiddle.net/hhresek7/1/

Upvotes: 1

Related Questions