Skip to content

Instantly share code, notes, and snippets.

@AntoineAugusti
Created November 29, 2013 18:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AntoineAugusti/7710149 to your computer and use it in GitHub Desktop.
Save AntoineAugusti/7710149 to your computer and use it in GitHub Desktop.
<?php
$DoughnutChart = new Chart('doughnut', 'exampleDoughnut');
$DoughnutChart->set('data', array(2, 10, 16, 30, 42));
$DoughnutChart->set('legend', array('Work', 'Eat', 'Sleep', 'Listen to music', 'Code'));
$DoughnutChart->set('displayLegend', true);
// We want to display percentages
$DoughnutChart->set('legendIsPercentage', true);
echo $DoughnutChart->returnFullHTML();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment