Question About bar plot

3 visualizaciones (últimos 30 días)
Raldi
Raldi el 27 de En. de 2012
hello everyone, I wanted to ask if it is possible in a bar plot of lets say 200 items to make one bar red and keep all the others at their default colors?
  1 comentario
Andrew Newell
Andrew Newell el 27 de En. de 2012
Do you want 200 bars?

Iniciar sesión para comentar.

Respuesta aceptada

Andrew Newell
Andrew Newell el 27 de En. de 2012
Yes, by splitting your bar plot into two. Here is a simple example:
% First bar plot
xdata = 1:9;
ydata = rand(9,1);
bar(xdata,ydata); hold on
% Second bar plot
xdata = 10;
ydata = rand(1);
bar(xdata,ydata,'FaceColor','r','EdgeColor','r')

Más respuestas (0)

Categorías

Más información sobre Bar Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by