-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.xml
More file actions
79 lines (73 loc) · 2.51 KB
/
config.xml
File metadata and controls
79 lines (73 loc) · 2.51 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<?xml version='1.0' encoding='UTF-8'?>
<widget xmlns="http://wirecloud.conwet.fi.upm.es/ns/macdescription/1" vendor="Ficodes" name="echarts" version="1.0.1">
<macversion>2</macversion>
<details>
<title>ECharts widget</title>
<homepage>https://github.com/Wirecloud/echarts-widget</homepage>
<authors>Carlos Blanco <cblanco@ficodes.com></authors>
<email>projects@ficodes.com</email>
<description>ECharts widget</description>
<longdescription>DESCRIPTION.md</longdescription>
<changelog>doc/changelog.md</changelog>
<image>images/echarts_logo.png</image>
<doc>doc/userguide.md</doc>
<license>Apache License 2.0</license>
<issuetracker>https://github.com/Wirecloud/echarts-widget/issues</issuetracker>
</details>
<requirements>
<feature name="DashboardManagement"/>
</requirements>
<preferences>
<preference
name="merge"
type="boolean"
label="Merge data"
description="Merge incoming data with previous data"
default="false"
/>
</preferences>
<wiring>
<inputendpoint
name="echarts_options"
type="text"
label="EChart options"
description="EChart options JSON object"
friendcode="echarts_options"
/>
<outputendpoint
name="click"
type="text"
label="Click event"
description="Click event JSON object, containing the data clicked"
friendcode="*"
/>
<outputendpoint
name="dblclick"
type="text"
label="Double click event"
description="Double click event JSON object, containing the data double clicked"
friendcode="*"
/>
<outputendpoint
name="hover"
type="text"
label="Hover event"
description="Hover event JSON object, containing the data hovered"
friendcode="*"
/>
<outputendpoint
name="highlight"
type="text"
label="Highlight event"
description="Highlight event JSON object, containing the data highlighted"
friendcode="*"
/>
</wiring>
<contents src="index.html"/>
<scripts>
<script src="lib/js/echarts.min.js"/>
<script src="js/ECharts.js"/>
</scripts>
<entrypoint name="FICODES_ECharts" />
<rendering height="400px" width="30%"/>
</widget>