-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtemplate.yml
More file actions
154 lines (154 loc) · 3.56 KB
/
Copy pathtemplate.yml
File metadata and controls
154 lines (154 loc) · 3.56 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
id: 'vr-network'
name: VR Network
description: VR Network
author: James Proctor, Pitch Interactive
sdk_version: 2
autoheight:
640: 9x16
∞: 16x9
settings:
- Introduction
- property: logo
name: Logo
description: Data URI of Logo at 1024 x 256 pixels
type: text
- property: gatid
name: Google Analytics Tracking ID
type: string
- property: title
name: Title
description: Visualizaiton title
type: string
- property: description
name: Description
description: Introductory and explanatory text
type: text
- Nodes
- property: basicNodeColor
name: Default Node Color
description: The default basic node color if category colors are not set in data
type: color
- property: adjacentNodeColor
name: Default Adjacent Node Color
description: The default adjacent node color if category colors are not set in data
type: color
- property: highlightNodeColor
name: Default Highlight Node Color
description: The default highlight node color if category colors are not set in data
type: color
- Links
- property: linkInboundColor
name: Inbound Color
description: The color of links to shows also searched for
type: color
- property: linkOutboundColor
name: Outbound Color
description: The color of links to related searches
type: color
- Cursor
- property: cursorInnerColor
name: Inner Color
description: The inside ring of the Cursor
type: color
- property: cursorOuterColor
name: Outer Color
description: The outside rings of the Cursor
type: color
- property: cursorActiveColor
name: Active Color
description: The color that indicates the cursor is selecting an element
type: color
- property: cursorOpacity
name: Opacity
description: The opacity of the cursor
type: number
min: 0
max: 1
step: 0.1
- Legend
- property: legendInboundLabel
name: Inbound Label
description: Legend Label for inbound links
type: string
- property: legendOutboundLabel
name: Outbound Label
description: Legend Label for outbound links
type: string
- Horizon
- property: horizonTopColor
name: Top Color
description: The color of the sky
type: color
- property: horizonBottomColor
name: Bottom Color
description: The color at the horizon
type: color
- property: horizonExponent
name: Exponent
description: The amount to blend top and bottom colors
type: number
min: 0
max: 1
step: 0.01
data:
- dataset: nodes
key: id
name: ID
type: column
column: nodes::A
- dataset: nodes
key: rank
name: Rank
type: column
column: nodes::B
- dataset: nodes
key: name
name: Name
type: column
column: nodes::C
- dataset: nodes
key: category
name: Category
type: column
column: nodes::D
optional: true
- dataset: links
key: source
name: Source
type: column
column: links::A
- dataset: links
key: target
name: Target
type: column
column: links::B
- dataset: links
key: value
name: Value
type: column
column: links::C
- dataset: categories
key: id
name: ID
type: column
column: categories::A
optional: true
- dataset: categories
key: name
name: Name
type: column
column: categories::B
optional: true
- dataset: categories
key: color
name: Color
type: column
column: categories::C
optional: true
build:
javascript:
script: npm run build
directory: src
files:
- package.json
- rollup.config.js