我希望能夠設置由谷歌圖表API創建的計圖表的字體大小 - https://google-developers.appspot.com/chart/interactive/docs/gallery/gauge谷歌圖表API - 設置計圖表字體大小
似乎沒有要在API中的一個選項所以我希望能夠在繪製圖表後操縱SVG。我認爲這可能與jQuery SVG插件 - http://keith-wood.name/svg.html
我有點卡在如何使用插件來更新SVG後,它被繪製。使用螢火蟲我知道在繪製圖表後,html看起來像這樣。
<iframe>
<html>
<head>...</head>
<body>
<div id="chartArea">
<svg>
<g>
//a couple of circles
<text></text> //The first text element is the title
//the rest of the graph
</g>
</svg>
</div>
</body>
</html>
</iframe>
我希望能夠寫這樣的事:
$('#gaugeChartDiv #chartArea').svg('get').change('text:first', { 'font-size' : 8 });
但它似乎並沒有這樣的。任何人都可以提供建議嗎?
真棒,謝謝! –
完美無缺! 10倍! –