bar chart allowing for x values to sometimes be the same

14 visualizaciones (últimos 30 días)
Jason
Jason el 18 de Dic. de 2020
Comentada: Jason el 18 de Dic. de 2020
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

Respuesta aceptada

Cris LaPierre
Cris LaPierre el 18 de Dic. de 2020
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 comentarios
Cris LaPierre
Cris LaPierre el 18 de Dic. de 2020
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 el 18 de Dic. de 2020
Ah got it. Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Interactive Control and Callbacks en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by