bar chart allowing for x values to sometimes be the same

조회 수: 16 (최근 30일)
Jason
Jason 2020년 12월 18일
댓글: Jason 2020년 12월 18일
Hello. I am plotting the data from a UITable using a bar chart
I am plotting color versus TotalArea, and quite often the color column has the same value e.g 457. This causes the bar chart to crash, so I have to manually go in and append _1, _2 etc..
Is there a way to get the barchart working without having to manually intervene. Please note, I don't always have the same X values (Color), sometimes several values with repeats, sometimes all different values. The values will be either 405, 457 or 532. For any repeats, I still want to plot them as seperate bars
Here is my current code.
cla(app.UIAxes2,'reset');
app.UIAxes2.NextPlot = 'replacechildren'; %Need this in 2020
data=app.UITable.Data;
data= flipud(data); %Most recent data is at the top
%Create bar chart
Y=cell2mat(data(:,4))
X=data(:,2);
Xdata = categorical(X);
X = reordercats(Xdata,X);
b1=bar(X,Y,'Parent',app.UIAxes2);
Thanks
Jason

채택된 답변

Cris LaPierre
Cris LaPierre 2020년 12월 18일
This is the expected behavior when you plot specifying x and y. However, I can think of a simple work around.
You xtick location and xticklabel are separate properties. You can take advantage of this to plot your values according to their index then change the label to be the color.
% Create table
TotalArea = 1e7*rand(5,1);
Color = [2 5 8 10 5]';
data = table(Color,TotalArea);
% bar plot - specify label
bar(data.TotalArea)
xticklabels(data.Color)
  댓글 수: 5
Cris LaPierre
Cris LaPierre 2020년 12월 18일
Close. In an app, any code that modifies an axes needs to have the axes handle included.
data=app.UITable.Data;
bar(data.TotalArea,'Parent',app.UIAxes); %b1=bar(X,Y,'Parent',app.UIAxes2);
xticklabels(app.UIAxes,data.Color)
Jason
Jason 2020년 12월 18일
Ah got it. Thanks

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactive Control and Callbacks에 대해 자세히 알아보기

태그

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by