-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsurvey.qmd
More file actions
49 lines (37 loc) · 980 Bytes
/
survey.qmd
File metadata and controls
49 lines (37 loc) · 980 Bytes
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
---
# The YAML header specifies several settings for the survey but is not required.
# A full list of settings can be found under _survey/settings.yml directory.
theme-settings:
theme: default
barposition: top
footer-left: "Made with [surveydown](https://surveydown.org)"
footer-right: '[<i class="bi bi-github"></i> Source Code](https://github.com/surveydown-dev/template_custom_plotly_chart)'
survey-settings:
show-previous: false
use-cookies: false
auto-scroll: false
rate-survey: false
system-language: en
highlight-unanswered: true
highlight-color: blue
capture-metadata: true
all-required: false
required:
- point_selection
---
```{r}
library(surveydown)
```
--- plotly_chart
# Template - Custom Plotly Chart
```{r}
#| out.width: "100%"
sd_output("point_selection", type = "question")
```
### You selected: `r sd_output("point_selection", type = "value")`
--- end
## End
This it the last page in the survey.
```{r}
sd_close()
```