Why does my line plot in MATLAB show a color gradient of black, green, and red?
1 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2016-4-12
编辑: MathWorks Support Team
2016-4-15
As seen in the attached image, I am trying to create a line plot with a particular color but it is displayed with a color gradient, predominantly of black, green, and red. This happens even if the default Color property is overridden. How can this be fixed?
采纳的回答
MathWorks Support Team
2016-4-15
This behavior is a known issue with certain Intel drivers. It has been addressed in the recent 4380 driver. There are two workarounds:
1) Use the OpenGL hardware basic mode
opengl hardwarebasic
2) Disable the align vertex centers property of the line
h=line(1:10);
h.AlignVertexCenters='off';
1 个评论
Image Analyst
2016-4-14
How about making it easy for us by providing a link to the "recent 4380 driver"?
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Graphics Performance 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!