The dot notation only works if the base element is already an object. For 'backgroundColor', the option can either be an object or a string, not both as you try to do. Try this instead:
var options = {
title: 'Chart',
backgroundColor: {
stroke: '#FFF',
fill: '#D6D6D6'
},
height: 265
};
Dates must be added as javascript Date objects, like this (note that months are 0-indexed, so January is 0 not 1):
new Date(<year>, <month>, <day>)
so the dates would be added like this:
data.addRows([
[new Date(2010, 1, 1), xxxx], // <-- Feb 2, 2010
[new Date(2012, 2, 23), yyyy], // <-- Mar 23, 2010
]);