How can I disable the background grid of a text box inside the graph in matlab R2019b?.
4 ビュー (過去 30 日間)
古いコメントを表示
ANIRBAN MAJUMDAR
2020 年 2 月 2 日
コメント済み: Caroline Hamilton Smith
2024 年 11 月 18 日
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 件のコメント
採用された回答
Roshni Garnayak
2020 年 2 月 7 日
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:
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!