How to plot pie chart in Matlab GUI using buttons?

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);

 채택된 답변

Adam Danz
Adam Danz 2020년 4월 6일

0 개 추천

Hint: "Labels" is not the same as "labels". Variable names are case sensitive.

댓글 수: 3

Thank you so much!
Much appreciated :)
Quick question: Is there any way i can change the colours for the segmentation of the pie?
Adam Danz
Adam Danz 2020년 4월 6일
편집: Adam Danz 2020년 4월 6일
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.
Yeah sure!
Thank you

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Pie Charts에 대해 자세히 알아보기

질문:

2020년 4월 6일

편집:

2020년 4월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by