Dear All,
I am having a problem with the following code:
I believe the option scale() should be permissible here, since the documentation indicates that graph pie allows std_options, which in turn includes scale(), see help graph pie.
The option scale() is not recognized neither from the code, like in example above, nor interactively, when set via the dialog box:

And yet the scaling factor works when set up in the overall graph settings in the Graph Editor:

The specific place where it fails is somewhere deep in the graphics command parsing:

Is this a known issue?
I believe scale() was working in the earlier versions of Stata for pie charts as well, and I don't see anything fundamental as to why it should not be applicable specifically to pie charts.
Thank you, Sergiy
PS: This is Stata 17.0 (build 170130) on MS Windows.
PPS: What is FAKE_OPT_FOR_BETTER_MSG ?
I am having a problem with the following code:
Code:
clear all
version 17.0
input strL c int v
"Alpha" 100
"Bravo" 200
"Charlie" 300
"Delta" 400
end
graph pie v, over(c)
graph pie v, over(c) scale(0.5) // fails here
/* end of file */
I believe the option scale() should be permissible here, since the documentation indicates that graph pie allows std_options, which in turn includes scale(), see help graph pie.
The option scale() is not recognized neither from the code, like in example above, nor interactively, when set via the dialog box:
And yet the scaling factor works when set up in the overall graph settings in the Graph Editor:
The specific place where it fails is somewhere deep in the graphics command parsing:
Is this a known issue?
I believe scale() was working in the earlier versions of Stata for pie charts as well, and I don't see anything fundamental as to why it should not be applicable specifically to pie charts.
Thank you, Sergiy
PS: This is Stata 17.0 (build 170130) on MS Windows.
PPS: What is FAKE_OPT_FOR_BETTER_MSG ?

Comment