Figure: Move axis background above all graphics objects

1 vue (au cours des 30 derniers jours)
Vojtech
Vojtech le 19 Juil 2018
Modifié(e) : Jan le 20 Juil 2018
Here is a simple code which produces the figure on the left:
figure; box on; hold on;
line([0,1],[0,1],'LineWidth',10);
scatter(1,0,100,'filled');
Is it possible to stack gray background above graphics objects to get the figure on the right?
Command "set(gca,'Layer','top')" set just the black axis above the objects but not the gray background.

Réponse acceptée

Jan
Jan le 19 Juil 2018
Start with
figure;
axes('ClippingStyle', 'rectangle', ... % Crops the line already
'box', 'on', ...
'NextPlot', 'add'); % Equivalent to: hold on
line([0,1],[0,1],'LineWidth',10);
scatter(1,0,100,'filled');
  2 commentaires
Vojtech
Vojtech le 19 Juil 2018
Thanks, that's what I was looking for. Unfortunately, it does not affect markers.
Jan
Jan le 20 Juil 2018
Modifié(e) : Jan le 20 Juil 2018
I did not find a solution for the marker also. What about using line objects to simulate markers? You need a modified version of scatter.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Produits


Version

R2015a

Community Treasure Hunt

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

Start Hunting!

Translated by