使用Google Charts API時,有某種方法可以使某些燭臺呈現不同的顏色嗎?Google Chart API - 某些燭臺的顏色不同
例如,看看以下(編輯)陰陽燭圖:
https://code.google.com/apis/ajax/playground/?type=visualization#candlestick_chart
function drawVisualization() {
// Populate the data table.
var dataTable = google.visualization.arrayToDataTable([
['Mon', 20, 28, 38, 45],
['Tue', 31, 38, 55, 66],
['Wed', 50, 55, 77, 80],
['Thu', 77, 77, 66, 50],
['Fri', 68, 66, 22, 15]
// Treat first row as data as well.
], true);
// Draw the chart.
var chart = new google.visualization.CandlestickChart(document.getElementById('visualization'));
chart.draw(dataTable, {legend:'none', width:600, height:400});
}
有沒有辦法讓,比方說,只是「星期二」陰陽燭紅,同時保持其餘的藍/白?
謝謝@anto,我會接受這個,因爲它是正確的答案,非常有幫助。最後,我用一個組合圖表,將非相關蠟燭替換爲折線圖系列(陰燭值爲null),並將適當的燭臺留在原位(線值爲空)。 – themerlinproject
thnks男人的工作 – user3098137