this is all code for timeline charts with colors problem. Where is problem? Thanks
var dataTable = {"cols":[
{"id":null,"label":"Title graph","type":"string"},
{"id":null,"label":"Description","type":"string"},
{"id":null,"label":"Start","type":"date"},
{"id":null,"label":"End","type":"date"}
],
"rows":[
{"c":[{"v":"Event1"},{"v":"#19deeb"},{"v":new Date(2013,10,21,20,50,0)},{"v":new Date(2013,10,22,20,10,0)}]},
{"c":[{"v":"Event1"},{"v":"#1921eb"},{"v":new Date(2013,10,21,20,45,0)},{"v":new Date(2013,10,22,20,50,0)}]},
{"c":[{"v":"Event2"},{"v":"#1921eb"},{"v":new Date(2013,10,21,20,0,0)},{"v":new Date(2013,10,23,20,10,0)}]},
{"c":[{"v":"Event2"},{"v":"#1921eb"},{"v":new Date(2013,10,21,20,20,0)},{"v":new Date(2013,10,22,20,30,0)}]},
{"c":[{"v":"Event2"},{"v":"#ffd708"},{"v":new Date(2013,10,23,21,15,0)},{"v":new Date(2013,10,24,20,0,0)}]},
{"c":[{"v":"Event3"},{"v":"#ffd708"},{"v":new Date(2013,10,21,20,30,0)},{"v":new Date(2013,10,21,22,25,0)}]},
{"c":[{"v":"Event3"},{"v":"#1921eb"},{"v":new Date(2013,10,22,18,10,0)},{"v":new Date(2013,10,23,20,0,0)}]}
]};
var options = {
title: "Graph",
width: 940,
height: 600,
colors: ["#19deeb","#1921eb","#1921eb","#1921eb","#ffd708","#ffd708","#1921eb"]
}
// Create the data table.
var data = new google.visualization.DataTable(dataTable);
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.Timeline(elm);
chart.draw(data, options);