how can I change the axes title in plot browser?
Show older comments
now it "axes(no title)". I tried to put:
1)'name','my_name'
2)'title', 'my_title'
thanks
3 Comments
Geoff Hayes
on 20 Feb 2018
Gil - are you trying to add a title to your figure or one of your axes (see Add title, axis label, and legend)? Or just adding some text somewhere (see Add text descriptions to data)?
Gil Kolin
on 20 Feb 2018
Geoff Hayes
on 21 Feb 2018
If you want to add a title to each plot, then consider using a legend.
Answers (1)
Abdulrahman
on 23 Sep 2024
- Open the Plot Browser: You can open the Plot Browser by clicking on the "View" menu in the figure window and selecting "Plot Browser."
- Select Your Plot: In the Plot Browser, select the plot for which you want to change the axes titles.
- Edit the Axes Titles:
- Right-click on the axes in the figure or in the Plot Browser.
- Choose "Properties" or "Edit Axes."
- In the properties dialog, find the options for the X and Y axis titles. You can edit them directly there.
- Using Code: Alternatively, you can also set the titles programmatically using the following commands.
xlabel('Your X-axis Title');
ylabel('Your Y-axis Title');
Categories
Find more on Labels and Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!