1
var options = {
width: "100%",
legend: 'none',
backgroundColor: { fill: 'transparent' },
chartArea: { width: '80%' },
bar: { groupWidth: "50%" },
animation: { "startup": true, duration: 1000, easing: 'in' },
colors: ['#529736', '#007DB9', '#EC1C24'],
fontSize: 10,
hAxis: {
direction: 1,
title: 'Database'
},
vAxis: {
title: 'Percent Of Successful Intervals',
minValue: 75,
format: '#',
ticks: [75, 80, 85, 90, 95, 100]
}
};
var table = new google.visualization.DataTable();
table.addColumn('string', 'Database');
table.addColumn('number', 'Percent of Successful Intervals');
table.addColumn({ type: 'string', role: 'tooltip' });
table.addColumn({ type: 'string', role: 'style' });
table.addRows([[
graphLabel,
percentRNI,
"Percentage: " + data.d[iCnt].RNIPct + "%\nRecords: " + data.d[iCnt].RNIRecordCount,
'fill-color: ' + getColor(percentRNI)
]]);
table.addRows([[
"LDA",
percentLDA,
"Percentage: " + data.d[iCnt].LDAPct + "%\nRecords: " + data.d[iCnt].LDARecordCount,
'fill-color: ' + getColor(percentLDA)
]]);
chart.draw(table, options);
我有一個Google條形圖,其中有條形標籤,我正試圖動態添加一個類。但是,我一直無法找到引用標籤本身或添加類的方法。該圖表是從我正在構建的Google數據表中創建的。將課程應用於Google條形圖標籤
這裏就是我試圖完成:
我覺得這應該是簡單的,但我一直沒能找到文檔中的任何東西。任何人都有答案?
它確實有幫助!我知道在問題中我沒有提到這一點,但是有沒有辦法將樣式應用於其中一個標籤? – user2276280
不使用標準圖表選項 - 但您可以手動更改svg,一旦圖表的''ready''事件觸發(或在這種情況下''animationfinish''),使用jquery/javascript ... – WhiteHat
更改答案包括手動更改svg的示例... – WhiteHat