suggestions = ({
"simple_pie": {
label: "Pie chart",
note: "",
code: `survey.pie(❓, {
domain: 🏠
})`
},
"simple_histogram": {
label: "Histogram",
note: "Show the frequency of each choice",
code: `survey.histogram(❓, {
domain: 🏠
})`
},
"limit_histogram": {
label: "Histogram",
note: "Show the frequency of each choice",
code: `survey.histogram(❓, {
limit: 8,
})`
},
"multi_histogram": {
label: "Multi-select Histogram",
note: "Show the top answers selected",
code: `survey.histogram(❓, {
limit: 8,
multiselect: true
})`
},
"free_response": {
label: "Free Response",
note: "Show a list of responses",
code: `survey.freeResponse(❓)`
},
"compare_choice_multi": {
label: "",
note: "",
code: `survey.matrixCompare(❓, ❔)`
},
"compare_multi_choice": {
label: "",
note: "",
code: `survey.matrixCompare(❓, ❔)`
},
"compare_choice_choice": {
label: "",
note: "",
code: `survey.matrixCompare(❓, ❔)`
},
"compare_multi_multi": {
label: "",
note: "",
code: `survey.matrixCompare(❓, ❔)`
},
})