0
sliceVisibilityThreshold: .05 

は、クラブのすべてのカテゴリが5%未満のチャットで表示されています。 「他の」上にマウスを置いてマージしたカテゴリを見る方法はありますか?他のGoogleの円グラフのクラブカテゴリーをご覧ください。

+0

ない可能性 - _Other_カテゴリに、チャートは任意のツールチップが表示されない、[カスタム](https://developers.google.com/ chart/interactive/docs/customizing_tooltip_content#customizing-html-content)などがあります。 'onmouseover'や' select'イベントも発生しません。 _Other_スライスの座標に基づいて独自の 'mouseover'イベントを提供する必要があります – WhiteHat

答えて

0

使用円グラフで小さい値を表示するには、optionssliceVisibilityThreshold: 0を使用します。

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

参照:標準のGoogleの可視化技術を使用してhttps://jsfiddle.net/L03jf90s/2/

関連する問題