Filter löschen
Filter löschen

Why are pie charts in multiple subplots black?

3 Ansichten (letzte 30 Tage)
K E
K E am 31 Jul. 2012
I have a program that generates many pie charts, each within its own subplot. Oddly, after I apply a legend or resize the figure manually, the pies all turn black so that you can no longer see the color wedges. If you follow the example below then maximize the figure so you can see the pies, they should be black. This used to work in 2010 and now in R2012a it does not. What could be the cause?
figure ;
nCol = 23 ; nRow = 15 ;
iPlot = 0 ;
for iRow = 1:nRow
for iCol = 1:nCol
iPlot = iPlot + 1 ;
subplot(nRow, nCol, iPlot) ;
pie(rand(1, 6))
end
end
% When we reach this point and resize, pies are in color
% Some time after this point, pies switch to black
delete(findobj('type', 'text'))
labels = {'A', 'B', 'C', 'D', 'E', 'F'} ;
legend(labels) ;
  3 Kommentare
K E
K E am 1 Aug. 2012
Excellent suggestion, will update the question.
Oleg Komarov
Oleg Komarov am 1 Aug. 2012
I cannot reproduce the problem (but I am using the pre-release 2012b). Still, it took several minutes to complete (no dedicated graphics card).

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Sean de Wolski
Sean de Wolski am 1 Aug. 2012
They're in color for me after the text deletion step (the text was in black).
  3 Kommentare
Sean de Wolski
Sean de Wolski am 1 Aug. 2012
What renderer are you using?
get(gcf,'renderer')
K E
K E am 1 Aug. 2012
Bearbeitet: K E am 2 Aug. 2012
OpenGL. But when I switched to zbuffer or painters, the black pies returned to color! Time for me to learn more about renderers. I also found the figure slow to generate in opengl, and this answer has some useful information on that problem.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by