Hi
When I use an apostrophe in the ylabel the ytitlegap is not correctly specified.
I used the margin option to set the gap.
However, I wonder if there is an other way to define the ylabel to avoid this problem?
I'm using Stata 13.1
When I use an apostrophe in the ylabel the ytitlegap is not correctly specified.
I used the margin option to set the gap.
However, I wonder if there is an other way to define the ylabel to avoid this problem?
I'm using Stata 13.1
Code:
clear sysuse auto * problem tw scatter price price, scheme(s2color) /// ylabel(0 "0" 5000 "5'000" 10000 "10'000" 15000 "15'000", angle(horizontal)) * no problem tw scatter price price, scheme( s2color) /// ylabel(0 "0" 5000 "5.000" 10000 "10.000" 15000 "15.000", angle(horizontal)) * quick fix tw scatter price price, scheme(s2color) /// ylabel(0 "0" 5000 "5'000" 10000 "10'000" 15000 "15'000", angle(horizontal)) /// ytitle(, margin(0 12 0 0))
Comment