Solved – what do you call a pie chart with equal arcs but different areas

data visualizationpie chart

I want to create a pie chart for four items, the arc of the slices would be equal, each 90 degrees, however the areas would be different since I will shrink or enlarge the slice depending on the data. Here is an that is close to what I want:

[example](http://www.excelcharts.com/blog/creative-pie-charts-better-infographics/#!wp-prettyPhoto[3934]/0/)

Basically it would look like a circular bar graph that is filled in the center.
What do you call this type of chart and how would I create it.

Best Answer

It looks like as a polar area diagram or rose diagram (in geology).

To create it, in general, you need to create several circles with radii proportional to your data categories, then just cut slices.

I've plotted these diagrams using Matlab function rose http://www.mathworks.com/help/matlab/ref/rose.html

Or try this free program http://www.rgraph.net/examples/rose.html

Related Question