Skip to content

Instantly share code, notes, and snippets.

@AntoineAugusti
Created November 29, 2013 18:14
Show Gist options
  • Save AntoineAugusti/7709813 to your computer and use it in GitHub Desktop.
Save AntoineAugusti/7709813 to your computer and use it in GitHub Desktop.
<?php
$PieChart = new Chart('pie', 'examplePie');
$PieChart->set('data', array(2, 10, 16, 30, 42));
$PieChart->set('legend', array('Work', 'Eat', 'Sleep', 'Listen to music', 'Code'));
$PieChart->set('displayLegend', true);
echo $PieChart->returnFullHTML();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment