1
我一直在閱讀和閱讀,但我無法找到解決方案。谷歌圖表條不同顏色
下面是我的代碼,它的工作原理是100%,所有我想要做的就是讓每個酒吧有不同的顏色。
有人可以幫助我讓每個酒吧有不同的顏色嗎?
我還需要圖例爲30%,圖表爲70%。
PHP
$rows = array();
$flag = true;
$table = array();
$table['cols'] = array(
array('label' => 'NAME', 'type' => 'string'),
array('label' => 'VALUE', 'type' => 'number'));
$rows = array();
while ($r = mysql_fetch_assoc($sth)) {
$temp = array();
$temp[] = array('v' => (string) $r['NAME']);
$temp[] = array('v' => (int) $r['VALUE']);
$rows[] = array('c' => $temp);
}
$table['rows'] = $rows;
$jsonTable = json_encode($table);
的JavaScript:
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script type="text/javascript">
google.load('visualization', '1', { 'packages': ['corechart'] });
google.setOnLoadCallback(drawChart);
function drawChart() {
var data = new google.visualization.DataTable(<?php echo $jsonTable; ?>);
var options = {
title: 'Fund Value',
is3D: 'true',
colors: ["red"],
width: 800,
height: 600,
legend: { textStyle: { fontSize: 10 }}
};
var chart = new google.visualization.BarChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
這個問題的任何運氣? – WhiteHat