1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<!--
$Author:
$Date: 2018/8/2
$Revision: 1.0
CSH 度回款/放款金额 按统计
-->
<a:screen xmlns:a="http://www.leaf-framework.org/application">
<a:init-procedure/>
<a:view >
<style>
html,body{
width:840px;
height:360px;
margin: 0;
padding: 0;
}
</style>
<script><![CDATA[
]]></script>
<a:dataSets>
<a:dataSet id="csh_count_rec_ds" autoQuery="true" model="csh.CSH911.csh_count_rec">
<a:fields>
<a:field name="time"/>
<a:field name="amount"/>
</a:fields>
</a:dataSet>
<a:dataSet id="csh_count_pay_ds" autoQuery="true" model="csh.CSH911.csh_count_pay">
<a:fields>
<a:field name="time"/>
<a:field name="amount"/>
</a:fields>
</a:dataSet>
</a:dataSets>
<a:tabBarChart id="widget_csh_count" title="年回款/放款金额趋势" width="840" height="360" themeColor="#5A7FFF">
<a:charts>
<a:chart title="回款金额" bindTarget="csh_count_rec_ds" amountPrompt="今年回款总额"
xField="time" xPrompt="时间" yField="amount" yPrompt="数额"/>
<a:chart title="放款金额" bindTarget="csh_count_pay_ds" amountPrompt="今年放款总额"
xField="time" xPrompt="时间" yField="amount" yPrompt="数额"/>
</a:charts>
</a:tabBarChart>
</a:view>
</a:screen>