2017-05-09 32 views

回答

0

這似乎並不存在於表API還爲Chart section

牀單API還沒有授予谷歌 表圖表的完全控制。無法訪問某些圖表類型和某些圖表設置(如 背景顏色或軸標籤格式),或者使用當前API選擇 。

我可以考慮在格式化標題在谷歌圖表API發現找到最近的事情,Pie Chart data format

titleTextStyle 指定標題文本樣式的對象。該對象具有以下格式:

{ color: <string>, 
    fontName: <string>, 
    fontSize: <number>, 
    bold: <boolean>, 
    italic: <boolean> } 

因此,這將是這個樣子:

var options = { 
     title: 'Popularity of Types of Pizza', 
     titleTextStyle: { 
      color: <string>, 
      fontName: <string>, 
      fontSize: <number>, 
      bold: <boolean>, 
      italic: <boolean> 
     }, 
     sliceVisibilityThreshold: .2 
     }; 

     var chart = new google.visualization.PieChart(document.getElementById('chart_div')); 
     chart.draw(data, options); 
+1

感謝的您的時間。我們希望下一個版本將具備此功能。 – Enea360