10-18-2019, 12:25 PM
(10-18-2019, 01:12 AM)EricTsuei Wrote: thank you
I have create some graph finally.
but this can't work:
<elements>{@SUM(production_management/main_page['budget'])}</elements>
and need to change to this:
<elements>{@sum(production_management/main_page.budget)}</elements>
don know why.
but can we do some more? like display sum or count value at the top of each bar?
In the TEL (TACTIC Expression Language), square brackets are used for filters and SQL operators
ie. "[<column>, <value>]"
ie. @SOBJECT(prod/shot.sthpw/task['@ORDER_BY','process']['@LIMIT','50'])
and "." are used for columns and schema connections.
In this case, to sum the budget column, "." is correct.
Best,
Celton