Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

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

  1. Use the Advanced mode of the aggregation editor

  2. Select the relevant data collection

  3. Name the aggregation

  4. Make sure the Single Result / Einzelergebnis is turned off

Image RemovedImage Added

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

...