mirror of
https://github.com/noodlapp/noodl-docs.git
synced 2026-01-12 15:22:53 +01:00
Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com> Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com> Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com> Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
41 lines
951 B
Markdown
41 lines
951 B
Markdown
---
|
|
title: Radar Chart | Chart.js Module
|
|
hide_title: true
|
|
---
|
|
|
|
# Radar Chart Example
|
|
|
|
## Basic
|
|
|
|
<div className="ndl-image-with-background l">
|
|
|
|

|
|
|
|
</div>
|
|
|
|
```js
|
|
Outputs.Data = {
|
|
labels: ["January", "February", "March", "April", "May", "June", "July"],
|
|
datasets: [
|
|
{
|
|
label: "Dataset 1",
|
|
data: [
|
|
68.09585048, 29.88168724, 29.83624829, 69.19410151, 89.93055556,
|
|
19.20610425, 80.47753772
|
|
],
|
|
borderColor: "rgb(255, 99, 132)",
|
|
backgroundColor: "rgba(255, 99, 132, 0.5)"
|
|
},
|
|
{
|
|
label: "Dataset 2",
|
|
data: [
|
|
71.27572016, 7.65003429, 35.27949246, 7.2505144, 28.50137174,
|
|
66.93329904, 31.1882716
|
|
],
|
|
borderColor: "rgb(54, 162, 235)",
|
|
backgroundColor: "rgba(54, 162, 235, 0.5)"
|
|
}
|
|
]
|
|
}
|
|
```
|