Table of Contents |
---|
A Likert scale is a rating scale used to measure opinions, attitudes, or behaviors. It consists of a statement or a question, followed by a series of five or seven answer statements. Respondents choose the option that best corresponds with how they feel about the statement or question.
...
Aggregation Structure:
Basic Settings
Use the Advanced mode of the aggregation editor
Select the relevant data collection
Name the aggregation
Make sure the Single Result / Einzelergebnis is turned off
Aggregation
Group Stage #1
...
Code Block |
---|
{ indexBy: 'value', arcLabelsTextColor: '#FFFFFF', axisBottom: { legend: 'Anzahl der Befragten / Prozent', legendOffset: '40' }, margin: { top: 30, right: 10, bottom: 50, left: 5 }, layout: 'horizontal', theme: { fontSize: 12 }, labelSkipWidth: 0, showPercentageToggle: true, groupMode: 'stacked', keys: [ 'Stimme stark zu', 'Stimme eher zu', 'Weder noch', 'Stimme eher nicht zu', 'Stimme gar nicht zu' ], legend: true, legends: [ { dataFrom: 'labels', anchor: 'top', direction: 'row', justify: false, translateX: 0, translateY: -20, itemsSpacing: 10, itemWidth: 150, itemHeight: 20, itemDirection: 'left-to-right', itemOpacity: 0.85, symbolSize: 20, effects: [ { on: 'hover', style: { itemOpacity: 1 } } ] } ] } |
Displaying multiple likert-scale charts in one widget:
In
...