Skip to content Skip to sidebar Skip to footer

Highcharts Datetime Xaxis Without Missing Values (weekends)

I am unable to render datetime chart without weekends. How can one do it? Here is sample code (http://jsfiddle.net/LLExL/1720/): $('#container').highcharts({ xAxis: { type: '

Solution 1:

Highcharts doesn't support ordinal axis. This feature is part of Highstock and require Highstock lbrary to be used. When using Highstock, you are able to create stock charts by calling new Highstock.StockChart() and basic charts by callling new Highstock.Chart().

Solution 2:

Oridinal axis is available only in the Highstock.

http://api.highcharts.com/highstock#xAxis.ordinal

Post a Comment for "Highcharts Datetime Xaxis Without Missing Values (weekends)"