Versions Compared

Key

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

Table of Contents
minLevel1
maxLevel7

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.

...

  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:

If you wish to display multiple likert scale charts in one widget because they belong together in a survey, for example, you can use a calculation to display them together.

...

Calculation

In

...

the widget editor select the chart type “Bar Chart”, then click on Calculation / Berechnung, and add a new calculation:

...

When you are in the Calculation Editor follow these steps:

  1. Name your aggregation

  2. Add the relevant aggregations to the calculation and give a code to each.
    Best practice: Do not use upper-case letters or numbers in the beginning

  3. Use the scrip in the image to add and display the aggregations together.

  4. Keep in mind, the aggregation in line 3 will be displayed in the bottom of the chart and the last one, in this case line 9 (koopbegr) will be displayed at the top of the chart.

  5. Click “Preview” or “Vorschau” to see if it works.

  6. Click “Save as new” or “Speichern als neu”.

...

Chart configuration (Editor)

The chart configuration function the same as if you used a single aggregation, so feel free to use the chart configuration posted above and adapt it to your preferences.