Animated JavaScript Radar Chart

This example shows creation of a Radar Chart with animated transitions by using a suitably styled SpiderChart.

SpiderCharts can be styled to look like traditional Radar Charts by usage of SpiderWebModes - more specifically, SpiderWebMode.Circle.

// Set web-mode of SpiderChart, affecting the shape of its background, webs and nibs.
spiderChart.setWebMode(SpiderWebMode.Circle)

Transitions can be set at regular intervals using setInterval like so:

setInterval(() => {
    // This code will be called approximately every 100 milliseconds.
}, 100)