안타깝게도 Google Charts API는 시리즈 당 단일 색상 이상을 지원하지 않습니다.
각각 하나의 값으로 여러 시리즈를 사용하여 가짜로 만들 수 있습니다.
function drawVisualization() {
// Create and populate the data table.
var data = google.visualization.arrayToDataTable([
['Sequence', '1', '2', '3', '4', '5', '6'],
['', 1,1,2,3,5,8],
]);
// Create and draw the visualization.
new google.visualization.ColumnChart(document.getElementById('visualization')).
draw(data,
{title:"Fibonacci",
width:600, height:400}
);
}
출처
https://stackoverflow.com/questions/22050012