Jump to content

Pie chart displaying of wedge start/end


ecopetition

Recommended Posts

Hello, I'm trying to work out a method of displaying a pie chart depending on the values in an array by looping for a different value of $i, here's what I have so far:

 

for($i = 0; $i < 11; $i++)
{
	$colour = $i;
	$fraction = ($pie_data[$i]/$total);
	$pie_angle = $fraction*360;
	ImageFilledArc($myImage, 100, 100, 200, 180, STARTANGLE, ENDANGLE, $colour, IMG_ARC_PIE);
}

As you can see I've got fractions, which I'm converting into an angle. However, I can't think of a way to have the startangle and endangle parameters of the ImageFilledArc function depend on all of the previous pie angles, because I'm hoping this pie chart can vary as pieces of data forming each wedge (and each fraction) change.  Can anybody help with this?

 

Thanks so much for your help.

Link to comment
https://forums.phpfreaks.com/topic/212814-pie-chart-displaying-of-wedge-startend/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.