Remove '%' sign in pie chart

This is probably a silly question. Can someone tell me that after I create a pie chart using the pie or pie3 command in MATLAB, how can I remove the % sign that comes with each chunk of the pie chart ?

 Accepted Answer

Ben11
Ben11 on 25 Jun 2014
Edited: Ben11 on 25 Jun 2014
From what I saw on the help, I think you need to create a cell array containing the labels you want, that is without %
Their example:
x = 1:3;
labels = {'Taxes','Expenses','Profit'};
figure
pie(x,labels)

2 Comments

Grazie Ben!
My pleasure!

Sign in to comment.

More Answers (0)

Tags

Asked:

on 25 Jun 2014

Commented:

on 25 Jun 2014

Community Treasure Hunt

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

Start Hunting!