Hi Team
I have a combo chart with 104 weeks of sales data. WeekEndDate (date), Units (number), Price (number, currency). We always send back 104 weeks of data. If a new item is shown with 1 week of data the actual data set is 104 WeekEndDate (domain values) with nulls for price and units for non represented weeks.
eg.
new Date('2014/07/24'), null, null
new Date('2014/07/31'), null, null
..
...
new Date('2016/07/14'), 605.00, 4.01 <==== the only point with data for units and price.
This causes an issue in the way the chart gets displayed. You can see in the image that the column for units spans multiple domain values. Hovering over the data points shows no values in the tooltips for them but visually this is happening. We use the viewWindow to only show the latest 13 weeks in this case but the problem persists no matter the viewWindow selected.

When there are 2 or more weeks then the chart renders without issue.
This might be limited information to go on but has anyone ever seen anything like this? Any help will be appreciated.
Regards
Henry