In this article
Configure radar chart in Chart widget using series and category date properties with circle or polygon shape. Check data and settings.
The standard chart widget includes support for radar charts. Although series and category definitions remain the same as normal charts, there are some additional settings, such as controlling the radar shape (circle or polygon).
Here's a code example for creating a radar chart:
widget chart {
label: "Radar Charts"
navigateTo: "Responses"
legend: leftMiddle
chart radar {
shape:circle
}
series {
value: survey:interview_start
breakdownBy: calendarMonth
format: dateFormat
label: "Month"
}
removeEmptyCategories: true
}