When creating surface plots, specifying a color for the edges of the surface with EdgeColor isn't working.
[X,Y] = meshgrid(1:0.5:10,1:20);
Z = sin(X) + cos(Y);
C = X.*Y;
surf(X,Y,Z,C,'EdgeColor','red')
Previous code should produce a surface with red edges, however, there's no color on the generated plot.
Expected and generated () plot:


Examples on using EdgeColor can be found on:
https://www.mathworks.com/help/matlab/ref/surf.html#bvgs7wv-1
When creating surface plots, specifying a color for the edges of the surface with
EdgeColorisn't working.Previous code should produce a surface with red edges, however, there's no color on the generated plot.
Expected and generated () plot:


Examples on using
EdgeColorcan be found on:https://www.mathworks.com/help/matlab/ref/surf.html#bvgs7wv-1