1
Googleの図表を使用している場合、通常は「役割:スタイル」機能を使用して個々の列の色を変更できますが、新しい素材設計図では、 。素材デザインGoogleの図表の色の変更列
google.charts.load('current', {'packages':['bar']});
google.charts.setOnLoadCallback(drawStuff);
function drawStuff() {
var data = new google.visualization.arrayToDataTable([
['', '', { role: 'style' } ],
["Strongly disagree", 0, 'color: black'],
["Disagree", 0, 'color: #000000'],
["Neutral", 6, 'color: #212121'],
["Agree", 45, 'color: #212121'],
['Stongly agree', 98, 'color: black']
]);
var options = {
title: 'Instructor presented the subject matter clearly',
width: 900,
legend: { position: 'none' },
chart: { subtitle: 'General physics 221 CSUSB winter 2017' },
axes: {
},
bar: { groupWidth: "90%" }
};
var chart = new google.charts.Bar(document.getElementById('top_x_div'));
// Convert the Classic options to Material options.
chart.draw(data, google.charts.Bar.convertOptions(options));
};
/2143)は、_material_ chartsでサポートされていません - 列の役割も含めて - カラーオプションの[この回答](http://stackoverflow.com/a/36452554/5090771)をチェックしてください... – WhiteHat