ecopetition Posted September 8, 2010 Share Posted September 8, 2010 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 More sharing options...
ecopetition Posted September 8, 2010 Author Share Posted September 8, 2010 Link to comment https://forums.phpfreaks.com/topic/212814-pie-chart-displaying-of-wedge-startend/#findComment-1108611 Share on other sites More sharing options...
ecopetition Posted September 8, 2010 Author Share Posted September 8, 2010 If any clarification is needed please tell me. Link to comment https://forums.phpfreaks.com/topic/212814-pie-chart-displaying-of-wedge-startend/#findComment-1108728 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.