contourf without isoline but with label
3 次查看(过去 30 天)
显示 更早的评论
Hi
below code from below question to remove the isoline. But I'd like to keep label with it. How to do it?
[C,h] = contourf(peaks(20),10);
set(h,'LineColor','none')
I do have below code, but once I used set(h,'LineColor','none'), the below code does't work anymore.
clabel(ct,hct,'FontWeight','bold','FontSize',contourlinefontsize_right,'Color','k');
ok, here is the whole code you can exerciese:
Z = peaks ;
[c,h]=contourf(Z); hold on ;
set(h,'LineColor','none')
h.LineWidth = 0.001;
clabel(c,h,'FontWeight','bold','FontSize',10,'Color','k');
Thanks
0 个评论
采纳的回答
更多回答(1 个)
dpb
2021-7-16
This one is nearly intractable -- the underlying text handles are tied to the color of the line, although one could set their color independently by use of the CData property for each.
BUT, the kicker is, internally, the handles to those text objects comes and goes depending upon whether the 'LineStyle' or 'LineColor' property are set -- if either of those is set to 'none' to hide the lines, then the text objects themselves disappear entirely, they aren't just hidden.
So (and I didn't have time just now to try to do it), the only way I see to go at it would be to
- create the plot; save the handle to the contour object [~,hC]=contourf(...);
- make sure lines/contour levels are showing
- save array of text object handles from undocumented TextPrims property -- hTxt=hC.TextPrims;
- retrieve all the poop about each -- including 'VertexData', 'Rotation', 'String', etc., etc., ...
- turn off 'LineStyle' by hC.LineStyle='none';
- now redraw all the text objects from the data saved in step 4) above.
Without such machinations, the next best thing to no line might be
h.LineStyle=':';
to used the dotted line as subtly as possible. Unfortunately, HG internals is such that even 'LineWidth' of eps is still rendered as if were 0.5 and identically zero isn't allowed (and if were, the above behavior of deleting the text objects would also probably happen, anyways).
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!