Why are pie charts in multiple subplots black?

조회 수: 4 (최근 30일)
K E
K E 2012년 7월 31일
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
K E
K E 2012년 8월 1일
Excellent suggestion, will update the question.
Oleg Komarov
Oleg Komarov 2012년 8월 1일
I cannot reproduce the problem (but I am using the pre-release 2012b). Still, it took several minutes to complete (no dedicated graphics card).

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

채택된 답변

Sean de Wolski
Sean de Wolski 2012년 8월 1일
They're in color for me after the text deletion step (the text was in black).
  댓글 수: 3
Sean de Wolski
Sean de Wolski 2012년 8월 1일
What renderer are you using?
get(gcf,'renderer')
K E
K E 2012년 8월 1일
편집: K E 2012년 8월 2일
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.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Line Plots에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by