Remove '%' sign in pie chart

1 view (last 30 days)
Jay Ghosh
Jay Ghosh on 25 Jun 2014
Commented: Ben11 on 25 Jun 2014
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
Jay Ghosh
Jay Ghosh on 25 Jun 2014
Grazie Ben!
Ben11
Ben11 on 25 Jun 2014
My pleasure!

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!