Hi,
I am trying to make a forest plot with some columns with descriptive info as strings. However, there seems to be some text alignment/justification issues for the column.
Code to reproduce the issue:
This yields the following forest plot (notice the jumping text in the category column from one row to the next): 
Any idea on how to solve this? Thank you in advance.
EDIT: Using StataNow/BE 18.5 (18 Dec 2024)
I am trying to make a forest plot with some columns with descriptive info as strings. However, there seems to be some text alignment/justification issues for the column.
Code to reproduce the issue:
Code:
clear all insobs 5 gen es=0 gen se=0.5 gen category="" replace category = "Nospace" in 1 replace category = "No_space_here" in 3 replace category = "Definitely space and very long" in 2 replace category = "Really another space and long" in 4 replace category = "Margins-are-wrong-most-of-the-time" in 5 meta set es se meta forestplot _id _plot _esci category
Any idea on how to solve this? Thank you in advance.
EDIT: Using StataNow/BE 18.5 (18 Dec 2024)
Comment