How to plot pie chart in Matlab GUI using buttons?

5 vues (au cours des 30 derniers jours)
Miss B
Miss B le 6 Avr 2020
Modifié(e) : Adam Danz le 6 Avr 2020
Hi again,
I have 3 buttons named "Weekone", "Month" "Year" - I want to plot 3 pie charts using axes when the buttons are pressed.
Here's my code below:
function weekone_Callback(hObject, eventdata, handles)
X = categorical ({'Present','Absence'});
explode = {'Absence'};
Labels = {'91%','9%'};
axes(handles.axes3);
pie(X,explode,labels);
I get the following error:
Unrecognized function or variable 'labels'.
Error in myprofile>weekone_Callback (line 281)
pie(X,explode,labels);

Réponse acceptée

Adam Danz
Adam Danz le 6 Avr 2020
Hint: "Labels" is not the same as "labels". Variable names are case sensitive.
  3 commentaires
Adam Danz
Adam Danz le 6 Avr 2020
Modifié(e) : Adam Danz le 6 Avr 2020
Glad I could help. Since the pie chart color is a different topic, please create a new question and I'd be glad to answer that. It's a good question.
Miss B
Miss B le 6 Avr 2020
Yeah sure!
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by