Page 1 of 1

comma as decimal separator

Posted: Tue Nov 11, 2025 12:33 am
by tvonbrasch
Is there a command in EViews to set comma as decimal separator in graph axis labels and output? Manually, this option is available by ticking “Comma as decimal” in Graphics defaults, but can it be enabled via command or script for automation purposes? If not, could this feature be considered for future updates?

Re: comma as decimal separator

Posted: Wed Nov 12, 2025 9:03 am
by EViews Gareth
The format(commadec) option on a graph.

Code: Select all

wfcreate m 1990 2020 series x=nrnd freeze(g) x.line g.axis(l) format(commadec, dec=2)
https://eviews.com/help/helpintro.html# ... 23ww183902

Re: comma as decimal separator

Posted: Wed Nov 12, 2025 12:25 pm
by tvonbrasch
Perfect, thanks!