Charts

From BarbWiki

Jump to: navigation, search

sample pie chart code
<?php

 $chart = array(
     '#chart_id' => 'current_status_chart',
     '#title' => chart_title(t('Types of published materials'), '660000', 15),
     '#type' => CHART_TYPE_PIE_3D,
     '#size' => chart_size(500, 250),
   );
   
 $chart['#data']['Theses'] = 10;
 $chart['#data']['Journal Articles']  = 28;
 $chart['#data']['Reports']  = 62;
 $chart['#labels'][] = t('Theses');
 $chart['#labels'][] = t('Journal Articles');
 $chart['#labels'][] = t('Reports');
 
 $chart['#data_colors'][] = '678867';
 $chart['#data_colors'][] = '0f568c';
 $chart['#data_colors'][] = 'e81a05';
 echo chart_render($chart);

?> Current status page code

Personal tools