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()
.
Post a Comment for "Highcharts Datetime Xaxis Without Missing Values (weekends)"