Customizing graph plot area
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Abdullah Alhebshi
am 5 Nov. 2021
Kommentiert: Abdullah Alhebshi
am 6 Nov. 2021
I want to make the plot area different color and thicker gridlines
Smething like this
0 Kommentare
Akzeptierte Antwort
TADA
am 6 Nov. 2021
Bearbeitet: TADA
am 6 Nov. 2021
changing the background color ia easy:
set(gca, 'Color', [0.1, 0.1, 0.1])
I cant find a line width property for the gridlines, you can change their line style or color. And if you absolutely must have thick gridlines, you can simply plot them yourself.
plot(1:10);
x = xticks(gca);
y = yticks(gca);
xMinMax = xlim(gca);
yMinMax = ylim(gca);
hold on;
plot([x(:)'; x(:)'], repmat(yMinMax(:), 1, numel(x)), 'k-', 'LineWidth', 1);
plot(repmat(xMinMax(:), 1, numel(y)), [y(:)'; y(:)'], 'k-', 'LineWidth', 1);
Off point, i wouldn't want tomake thick gridlines, because that would make it harder to read your plot,unless you are
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!