我正在使用带谷歌插件的Drupal 6图表模块。我的图表类型是pie3d。我无法为这些传说设置图例和颜色关联。
$chart = array(
'#plugin' => 'google',
'#type' => 'pie3D', // Display a 3D pie chart
'#color' => 'f0f0f0', // Background color, in RRGGBB format
'#width' => '470',
'#title' => t('Data Analysis'), // Chart title
array(
array('#value' => $notstarted, '#label' => t('Not Started'),'#legend' => t('#A35f23'),),
array('#value' => $partial, '#label' => t('Partial'),'#legend' => t('#A35f23')),
array('#value' => $completed, '#label' => t('Completed'),'#legend' => t('#A35f23'))
),
);
echo charts_chart($chart);
以上是我的代码。