How to skip legend names if their values equal zero on particular piechat?

21 views (last 30 days)
I am using the following code to plot piechart
labels = {Costs.name};
pie([Costs.GESAMT_ohne_D_Money_min]);
legend(labels);
Sometimes Costs.GESAMT_ohne_D_Money_min could have zero values so they are not printed on pie chart. Because of that labeling becomes wrong as it is not skipping the non-positive values.
How to fix that?

Accepted Answer

Image Analyst
Image Analyst on 8 Oct 2019
Try this:
zeroIndexes = [Costs.GESAMT_ohne_D_Money_min] <= 0
labels2 = labels(zeroIndexes); % Extract only the non-zero numbers.
pieData = [Costs.GESAMT_ohne_D_Money_min]; % Initialize
pieData = pieData(zeroIndexes); % Extract only the non-zero numbers.
pie(pieData);
labels(labels2);
  1 Comment
Konstantin Tkachuk
Konstantin Tkachuk on 14 Oct 2019
Thank you for the idea.
This is the working code I have in the result
nonZeroIndexes = [Costs.GESAMT_ohne_D_Money_min] > 0;
labels = {Costs.name};
labels = labels(nonZeroIndexes); % Extract only the positive numbers.
pieData = [Costs.GESAMT_ohne_D_Money_min]; % Initialize
pieData = pieData(nonZeroIndexes); % Extract only the positive numbers.
pie(pieData);
legend(labels);

Sign in to comment.

More Answers (0)

Products


Release

R2017b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!