4
是否可以將一個谷歌折線圖的一個線段設計爲虛線?就像這樣:谷歌折線圖:虛線部分
沒有可以做到這一點,但至少有兩個部分一個certainty
的作用,因爲「兩個數據點之間的線段是一定的,當且僅當兩個數據點有一定的」(見https://developers.google.com/chart/interactive/docs/roles#what-roles-are-available)
是否可以將一個谷歌折線圖的一個線段設計爲虛線?就像這樣:谷歌折線圖:虛線部分
沒有可以做到這一點,但至少有兩個部分一個certainty
的作用,因爲「兩個數據點之間的線段是一定的,當且僅當兩個數據點有一定的」(見https://developers.google.com/chart/interactive/docs/roles#what-roles-are-available)
有一個辦法,但超過破解,一個官方的解決方案,here是一個例子:
data.addColumn({type:'boolean',role:'certainty'}); // certainty col.
data.addRows([
[1, 41.8, true],
[2, 32.4, true],//duplicate this
[2, 32.4, false],
[3, 25.7, true],
[4, 10.5, true],
[5, 10.4, true],
[6, 7.7, true],
[7, 9.6, true],
[8, 10.6, true],
[9, 14.8, true],
[10, 11.6, true],
[11, 4.7, true],
[12, 5.2, true],
[13, 3.6, true],
[14, 3.4, true]
]);