How can I disable the background grid of a text box inside the graph in matlab R2019b?.
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
ANIRBAN MAJUMDAR
am 2 Feb. 2020
Kommentiert: Caroline Hamilton Smith
am 18 Nov. 2024 um 2:22
I do not want to disable the grid line of entire graph page, only want to disable the grid line of the background of a text box.
0 Kommentare
Akzeptierte Antwort
Roshni Garnayak
am 7 Feb. 2020
The default background color of the textbox is set to 'none' which renders it transparent. You can remove the gridlines by changing the 'BackgroundColor' property of the textbox to 'white' or any color you wish. Let t be the textbox object. The following code will change the background color:
t.BackgroundColor = 'white';
Refer to the following link for more details on the properties of a textbox:
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!