10-16-2019, 04:42 PM
This will do something similar.
<element>
<display class="tactic.ui.chart.SObjectChartWdg">
<title>Number of check-ins per user</title>
<chart_type>bar</chart_type>
<expression>@SOBJECT(sthpw/login)</expression>
<x_axis>login</x_axis>
<elements>{@COUNT(sthpw/task['status','Pending'])}|{@COUNT(sthpw/task['status','In Progress'])}</elements>
<rotate_x_axis>true</rotate_x_axis>
</display>
</element>
It's a bit cryptic, but if you know the expression language, you could graph almost any information. We haven't really build a fancy front end for this. For something better looking, you could add this to a custom layout and window dress it.
<element>
<display class="tactic.ui.chart.SObjectChartWdg">
<title>Number of check-ins per user</title>
<chart_type>bar</chart_type>
<expression>@SOBJECT(sthpw/login)</expression>
<x_axis>login</x_axis>
<elements>{@COUNT(sthpw/task['status','Pending'])}|{@COUNT(sthpw/task['status','In Progress'])}</elements>
<rotate_x_axis>true</rotate_x_axis>
</display>
</element>
It's a bit cryptic, but if you know the expression language, you could graph almost any information. We haven't really build a fancy front end for this. For something better looking, you could add this to a custom layout and window dress it.