Clear Filters
Clear Filters

double labels on x axis on a tiledlayout plot

22 views (last 30 days)
giacomo labbri
giacomo labbri on 9 Mar 2021
Edited: Walter Roberson on 18 Aug 2024 at 4:13
Hi,
I would like to have two series of label on a tile in a tileled layout plot.
One axis would indicate time and another would indicate position.
How can I achive that?

Answers (1)

Chidvi Modala
Chidvi Modala on 12 Mar 2021
Edited: Walter Roberson on 18 Aug 2024 at 4:13
You can put both axes in a "tiledlayout" (overlapping in the same tile), and then add the "axestoolbar" to the layout.
tl = tiledlayout(1,1)
axextoolbar(tl, 'default')
ax1 = axes(tl)
ax2= axes(tl)
ax2.Color = 'none'
ax2.YAxis.Visible = 'off'
ax2.XAxisLocation = 'top'
  1 Comment
Aliza Sloan
Aliza Sloan on 18 Aug 2024 at 4:06
What about 2 x-axes on only one of multiple tiled subplots?

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!