You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a minimum working example of the issue. As you see, the plots are not aligned correctly since the labels are of different width. The nicer looking way would be to make the plot areas the same width. In other words the widest labels in a table column decides the label width for all of the rows. I would assume the same issue happens when aligning plots side by side as well, though I have not tested it.
using Winston
x1 =linspace(0,2pi)
y1 =sin(x1)
t =Table(2,1)
t[1,1] =plot(x1, 2* y1)
t[2,1] =plot(x1, 1000* y1)
display(t)
The text was updated successfully, but these errors were encountered:
This is a minimum working example of the issue. As you see, the plots are not aligned correctly since the labels are of different width. The nicer looking way would be to make the plot areas the same width. In other words the widest labels in a table column decides the label width for all of the rows. I would assume the same issue happens when aligning plots side by side as well, though I have not tested it.
The text was updated successfully, but these errors were encountered: