Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/idrinth-api-bench/chartjs-plugin-stdev-filler
A small plugin to provide sensible standard deviation displays.
https://github.com/idrinth-api-bench/chartjs-plugin-stdev-filler
chartjs chartjs-plugin standard-deviation stdev
Last synced: 19 days ago
JSON representation
A small plugin to provide sensible standard deviation displays.
- Host: GitHub
- URL: https://github.com/idrinth-api-bench/chartjs-plugin-stdev-filler
- Owner: idrinth-api-bench
- License: mit
- Created: 2024-05-15T01:49:23.000Z (8 months ago)
- Default Branch: the-one
- Last Pushed: 2024-11-08T00:58:41.000Z (about 2 months ago)
- Last Synced: 2024-11-08T01:32:41.654Z (about 2 months ago)
- Topics: chartjs, chartjs-plugin, standard-deviation, stdev
- Language: TypeScript
- Homepage:
- Size: 93.8 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# @idrinth-api-bench/chartjs-plugin-stdev-filler
This tiny plugin adds a colored area around line charts if those provide a standard deviation value.
## Config
```js
{
datasets: [
{
label: 'example 1',
data: [10, 9, 11, 13, 11],
stdev: [1, 1.1, 3, 9, 0.2],
}
]
}
```