graph.datalabel not working properly with panel data
Posted: Fri Jan 20, 2023 8:49 am
Dear Eviews team,
I use Eviews 13 OCtober 17 2022 build
The datalabel command for graph objects does not work when a panel series is graphed with individual graphs per cross section.
See example code below.
Best, mamo
Code: Select all
The datalabel command for graph objects does not work when a panel series is graphed with individual graphs per cross section.
See example code below.
Best, mamo
Code: Select all
wfcreate a 2000 2022 2
series x=nrnd
for %p i c s
freeze(mode=overwrite, gra{%p}) x.line(panel={%p})
gra{%p}.setelem(1) symbol(dotobslabel)
show gra{%p}
'The following command does not work properly when panel=l (%p="i", individual graphs for each cross section)
' the data labels are not changed to "Hello" for each data point.
gra{%p}.datalabel point(all) label(Hello)
next