Hi,
I am trying to create a combo chart with a continuous time x axis that has seriesType: 'bars' and series: {11: {type: 'area', color: 'red'}} for the last set of data. I am running this off a dataTable obtained from a Google sheet that has dates in the first column and numbers in the remaining columns. However, I keep getting ''All series on a given axis must be of the same data type' errors. What am I doing wrong?
These are the chart options I am using via ChartWrapper:
chartType: 'ComboChart',
containerId: 'chart_div',
dataTable: data,
options: {
title: 'combo chart',
width: 800,
height: 400,
backgroundColor: 'transparent',
interpolateNulls: true,
seriesType: 'bars',
series: {11: {type: 'area', color: 'red'}}
}
All help appreciated.
Nick