Reputation: 11
So I have a database with 5 columns:
Columns 3, 4 and 5 sum up the total budget; thus each is a part of the total.
I would like to create a pie chart showing the percentage in each step. Would it be possible?
Upvotes: 1
Views: 4697
Reputation: 1946
The pie-chart takes 1 dimension and 1 metric so you'll need to transform your data to have the labels in one dimension column and the values in a metric column for it to work in pie-chart format
Upvotes: 1