When combining line and column data in a single chart the columns are spaced to the integer axis values.
http://jsfiddle.net/1zjbq8rh/
My goal is to display the columns normally, but use a higher resolution for the line. For example, in the jsfiddle, remove these data points:
{ x: 0.25, y: 15.5 },
{ x: 0.5, y: 17 },
{ x: 0.75, y: 18.5 },
to get the desired rendering of the columns.
Is there a workaround to accomplish this?