google.charts.load('current', {'packages':['corechart'], 'language': 'nl'});
google.charts.setOnLoadCallback(drawChart5);
function drawChart5() {
var data = google.visualization.arrayToDataTable([["","Totaal","Appels","Peren","Bananen","schatting"],[new Date(2020, 11, 1),2015,1223,614,178,null],[new Date(2020, 11, 2),1663,929,572,162,null],[new Date(2020, 11, 3),1449,570,429,127,323]]);
var options = { title: 'Consumptie per dag, december 2020',
titleTextStyle: { fontSize: 15 },
type: 'columns',
width: 426,
height: 240,
legend: { position: 'bottom' },
series: { 0: { type: 'line', color: '#fff', lineWidth: 0, pointSize: 0, visibleInLegend: false }, 1: { color: '66aabb' }, 2: { color: '66ddee' }, 3: { color: 'bbeeff' }, 4: { color: 'e8f8ff' } },
vAxis: { viewWindowMode: 'maximized' },
chartArea: { width: '90%', left: 60, right: 20 },
bar: { groupWidth: '80%' },
focusTarget: 'category',
isStacked: true };
var chart = new google.visualization.ComboChart(document.getElementById('chart5'));
chart.draw(data, options);
}
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<div style="display: inline-block; width: 426px; height: 240px;" id="chart5"></div>