Dear Support-Team,
I am having problems displaying a column chart with missing values when using a “date” based x axis. The colums are overlapping each other.
Example
The calculation of the column width seems to be wrong in the _calculateXOffsets function in jqxchart.core line 5961
var itemsCount = Math.max(1, isDateTime ? xoffsets.length : rangeLength);
var itemWidth = plotSize / itemsCount;
I was able to fix this problem changing these lines to:
var itemsCount = Math.max(1, isDateTime ? this._getDateDiff(min, max, xAxis.baseUnit) : rangeLength);
var itemWidth = plotSize / itemsCount;
Could you please check if there is another solution for this problem or include this patch in the next release?