Drupal 6 Chart模块不显示图例及其相关颜色

时间:2015-02-05 18:51:26

标签: php charts drupal-6 pie-chart

我正在使用带谷歌插件的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);

以上是我的代码。

0 个答案:

没有答案