Chart.js/docs/samples/area/radar.md
Evert Timberg 66ee0fecaf
Vuepress samples (#8756)
* Generate API docs with vuepress-plugin-typedoc

* Links, fixes, cleanup

* Convert bar samples to Vuepress

* Some line chart samples moved over

* Fix lint issues

* Derived axis type sample

* LineAreaStacked chart created in vuepress

* added radar area axample

* Line dataset added sample

* final area example added

* Add derived-chart-type

* Bar scriptable sample

* Scriptable samples

* Clean lint errors

* added linear axis samples to vuepress

* change tab to spaces to fix lint error

* Convert the rest of the scale samples

* Scale option samples

* Fix typo

* Fixes

* Legend samples

* Title samples

* Change the title of the tip block to Note (#8758)

* Convert bar samples to Vuepress

* Some line chart samples moved over

* Fix lint issues

* Derived axis type sample

* LineAreaStacked chart created in vuepress

* added radar area axample

* Line dataset added sample

* final area example added

* Add derived-chart-type

* Bar scriptable sample

* Scriptable samples

* Clean lint errors

* added linear axis samples to vuepress

* change tab to spaces to fix lint error

* Convert the rest of the scale samples

* Scale option samples

* Fix typo

* Fixes

* Legend samples

* Advanced samples

* Remove extra section

* Animation samples

* Hide legend from progressive line

* Add a comment on what `from` does

* Tooltip samples

* Ädd other charts to vuepress samples

* enable plugin again since all samples have been converted

* fix skip radar example, middle skip was not calculated correctly

* lint error

* Progressive-line: add 2nd line

* Fix lint errors

Co-authored-by: Jukka Kurkela <jukka.kurkela@gmail.com>
Co-authored-by: Jacco van den Berg <jaccoberg2281@gmail.com>
Co-authored-by: Jacco van den Berg <39033624+LeeLenaleee@users.noreply.github.com>
2021-04-02 08:04:39 -04:00

142 lines
2.8 KiB
Markdown

# Radar Chart Stacked
```js chart-editor
// <block:setup:1>
const inputs = {
min: 8,
max: 16,
count: 8,
decimals: 2,
continuity: 1
};
const generateLabels = () => {
return Utils.months({count: inputs.count});
};
const generateData = () => {
const values = Utils.numbers(inputs);
inputs.from = values;
return values;
};
const labels = Utils.months({count: 8});
const data = {
labels: generateLabels(),
datasets: [
{
label: 'D0',
data: generateData(),
borderColor: Utils.CHART_COLORS.red,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red),
},
{
label: 'D1',
data: generateData(),
borderColor: Utils.CHART_COLORS.orange,
hidden: true,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.orange),
fill: '-1'
},
{
label: 'D2',
data: generateData(),
borderColor: Utils.CHART_COLORS.yellow,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.yellow),
fill: 1
},
{
label: 'D3',
data: generateData(),
borderColor: Utils.CHART_COLORS.green,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.green),
fill: false
},
{
label: 'D4',
data: generateData(),
borderColor: Utils.CHART_COLORS.blue,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.blue),
fill: '-1'
},
{
label: 'D5',
data: generateData(),
borderColor: Utils.CHART_COLORS.purple,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.purple),
fill: '-1'
},
{
label: 'D6',
data: generateData(),
borderColor: Utils.CHART_COLORS.grey,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.grey),
fill: {value: 85}
}
]
};
// </block:setup>
// <block:actions:2>
let smooth = false;
let propagate = false;
const actions = [
{
name: 'Randomize',
handler(chart) {
inputs.from = [];
chart.data.datasets.forEach(dataset => {
dataset.data = generateData();
});
chart.update();
}
},
{
name: 'Propagate',
handler(chart) {
propagate = !propagate;
chart.options.plugins.filler.propagate = propagate;
chart.update();
}
},
{
name: 'Smooth',
handler(chart) {
smooth = !smooth;
chart.options.elements.line.tension = smooth ? 0.4 : 0;
chart.update();
}
}
];
// </block:actions>
// <block:config:0>
const config = {
type: 'radar',
data: data,
options: {
plugins: {
filler: {
propagate: false
},
'samples-filler-analyser': {
target: 'chart-analyser'
}
},
interaction: {
intersect: false
}
}
};
// </block:config>
module.exports = {
actions: actions,
config: config
};
```
<div id="chart-analyser" class="analyser"></div>