var RRR = new google.visualization.ChartWrapper({
'chartType': 'ComboChart',
'containerId': 'RevenueRunRate',
'options': {
'explorer': { actions: ['dragToZoom', 'rightClickToReset'] },
'focusTarget': 'category',
'width': 400,
'height': 300,
'hAxis': {direction: 1, bold: true, format: 'MMM-yy'},
'legend': { position: 'bottom', maxLines: 3 },
'title': 'Growth: (Revenue Run Rate & Bookings)',
'tooltipWidth':35,
'tooltipHeight':35,
'tooltipFontSize':10,
'seriesType': 'area',
'vAxes': {
0: {title:'Bookings', format: '$#,###',textStyle: {color: '#707B7C'}},
1: {title: 'Revenue Run Rate',format: '$#,###',textStyle: {color: '#2E86C1'}}
},
'series': {0: {type: 'line'}},
'series': {0: {targetAxisIndex:0, type: 'area'},
1: {targetAxisIndex:1, type: 'line', lineWidth: 5,curveType: 'function', lineDashStyle: [8,2] }
},
'colors': ['#707B7C', '#2E86C1'],
'animation': {
duration: 1000,
easing: 'inAndOut'
},
},
view: {
columns: [5,20,6]
},
}
);