aswi2021codebakers-gitlab/src/vega/base/empty.json @ 8cca41c0
1 |
{
|
---|---|
2 |
|
3 |
"data":[ |
4 |
{ |
5 |
"name": "source", |
6 |
"values": null |
7 |
} |
8 |
], |
9 |
|
10 |
"signals": [ |
11 |
{ |
12 |
"name": "text", |
13 |
"value": "Sample text." |
14 |
} |
15 |
], |
16 |
|
17 |
"scales": [ |
18 |
{ |
19 |
"name": "xscale", |
20 |
"domain": [0,0], |
21 |
"range": "width" |
22 |
}, |
23 |
{ |
24 |
"name": "yscale", |
25 |
"domain": [0,0], |
26 |
"range": "height" |
27 |
} |
28 |
], |
29 |
|
30 |
"axes":[ |
31 |
{ |
32 |
"orient": "bottom", |
33 |
"scale": "xscale" |
34 |
}, |
35 |
{ |
36 |
"orient": "left", |
37 |
"scale": "yscale" |
38 |
} |
39 |
], |
40 |
|
41 |
"marks": [ |
42 |
|
43 |
|
44 |
{ |
45 |
"type": "text", |
46 |
"align": "center", |
47 |
"baseline": "middle", |
48 |
"encode": { |
49 |
"enter": { |
50 |
"text": {"signal": "text"}, |
51 |
"x": {"scale": "xscale", "value": 0}, |
52 |
"y": {"scale": "yscale", "value": 0}, |
53 |
"align": {"value": "center"}, |
54 |
"baseline": {"value": "middle"} |
55 |
} |
56 |
} |
57 |
} |
58 |
] |
59 |
}
|
- « Předchozí
- 1
- 2
- Další »