0
sliceVisibilityThreshold: .05 

顯示俱樂部所有類別在餅形聊天中低於5%的餅形聊天。有沒有辦法查看懸停在「其他」上的合併類別。查看其他谷歌餅圖中的鞭狀類別

+0

不可能使用標準谷歌可視化技術 - 爲對_other_類別,圖表不會顯示任何工具提示,[自定義](https://developers.google.com/圖表/ interactive/docs/customizing_tooltip_content#customizing-html-content)或其他。它也不會觸發'onmouseover'或'select'事件。您必須根據_Other_切片的座標提供您自己的'mouseover'事件 – WhiteHat

回答

0

要顯示使用中的小值餅圖:sliceVisibilityThreshold: 0options

var options = { 
    title: 'My Daily Activities', 
    fontSize: 11, 
    backgroundColor: 'transparent', 
    width: "100%", 
    sliceVisibilityThreshold: 0, 
    legend: { textStyle: { fontSize: 12 } }, 
    height: 400, 
}; 

看到:https://jsfiddle.net/L03jf90s/2/