Chart.js/docs/samples/area/line-datasets.md

175 lines
3.8 KiB
Markdown
Raw Normal View History

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 14:04:39 +02:00
# Line Chart Datasets
```js chart-editor
// <block:setup:2>
const inputs = {
min: 20,
max: 80,
count: 8,
decimals: 2,
continuity: 1
};
const generateLabels = () => {
return Utils.months({count: inputs.count});
};
const generateData = () => (Utils.numbers(inputs));
Utils.srand(42);
// </block:setup>
// <block:data:0>
const data = {
labels: generateLabels(),
datasets: [
{
label: 'D0',
data: generateData(),
borderColor: Utils.CHART_COLORS.red,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red),
hidden: true
},
{
label: 'D1',
data: generateData(),
borderColor: Utils.CHART_COLORS.orange,
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),
hidden: true,
fill: 1
},
{
label: 'D3',
data: generateData(),
borderColor: Utils.CHART_COLORS.green,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.green),
fill: '-1'
},
{
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.grey,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.grey),
fill: '+2'
},
{
label: 'D6',
data: generateData(),
borderColor: Utils.CHART_COLORS.purple,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.purple),
fill: false
},
{
label: 'D7',
data: generateData(),
borderColor: Utils.CHART_COLORS.red,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.red),
fill: 8
},
{
label: 'D8',
data: generateData(),
borderColor: Utils.CHART_COLORS.orange,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.orange),
fill: 'end',
hidden: true
},
{
label: 'D9',
data: generateData(),
borderColor: Utils.CHART_COLORS.yellow,
backgroundColor: Utils.transparentize(Utils.CHART_COLORS.yellow),
fill: {above: 'blue', below: 'red', target: {value: 350}}
}
]
};
// </block:data>
// <block:actions:3>
let smooth = false;
let propagate = false;
const actions = [
{
name: 'Randomize',
handler(chart) {
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:1>
const config = {
type: 'line',
data: data,
options: {
scales: {
y: {
stacked: true
}
},
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>
## Docs
* [Area](../../charts/area.html)
* [Filling modes](../../charts/area.htmll#filling-modes)
* [Line](../../charts/line.html)
* [Data structures (`labels`)](../../general/data-structures.html)
* [Axes scales](../../axes/)
* [Common options to all axes (`stacked`)](../../axes/#common-options-to-all-axes)