Changing the histogram edge color from the default green gradient.

7 ビュー (過去 30 日間)
Andreas Haselsteiner
Andreas Haselsteiner 2016 年 4 月 1 日
編集済み: Duijnhouwer 2016 年 6 月 4 日
Hi Guys, I am having problems with the standard histogram function in Matlab 2015b.
The edges are colored with a green gradient and I cannot change it.
Example: x = randn(10000,1); h = histogram(x);
This is the output:
According to Documentation (<http://de.mathworks.com/help/matlab/ref/histogram.html>) I should get black edges. h.EdgeColor is [0, 0, 0] by the way and changing has no influence on the appearence.
  3 件のコメント
Andreas Haselsteiner
Andreas Haselsteiner 2016 年 4 月 4 日
A 20BWS40E00 Lenovo notebook with Windows 10. Your command "opengl software" did the trick. Thanks.
Duijnhouwer
Duijnhouwer 2016 年 6 月 4 日
編集済み: Duijnhouwer 2016 年 6 月 4 日
I had the exact same problem on Matlab 8.6.0.267246 (R2015b) running on a Dell Intel core i5-4570S CPU, 64-bit Windows 10. The command "opengl software" solved it (thanks Rick Rosson!). "opengl hardwarebasic" also removed the green gradient and might preserve some hardware acceleration (although on my computer it makes all lines appear a bit fuzzy)

サインインしてコメントする。

採用された回答

Rick Rosson
Rick Rosson 2016 年 4 月 2 日
The problem is with the renderer. Please try the following:
opengl software
and then re-plotting.

その他の回答 (2 件)

Image Analyst
Image Analyst 2016 年 4 月 2 日
Perhaps increase the edge width:
x = randn(10000,1);
h = histogram(x, 'EdgeColor', 'k', 'LineWidth', 2);
I don't see it so it could be an issue with your video adapter. I think I recall such a thing about 2-3 weeks ago and it was the poster's video adapter. Perhaps changing the renderer might help.
fig = figure;
x = randn(10000,1);
h = histogram(x, 'EdgeColor', 'k', 'LineWidth', 2);
% fig.Renderer = 'opengl';
fig.Renderer = 'painters';

Rick Irons
Rick Irons 2016 年 4 月 6 日

カテゴリ

Help Center および File ExchangeGraphics Performance についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by