├── .editorconfig ├── .eslintignore ├── .eslintrc.yml ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── npmpublish.yml ├── .gitignore ├── .vscode └── tasks.json ├── LICENSE ├── README.md ├── karma.conf.cjs ├── package.json ├── rollup.config.js ├── sample.png ├── samples ├── .eslintrc.yml ├── bar.html ├── customize.html ├── offset.html ├── repeat.html ├── style.css ├── update.html └── utils.js ├── src └── index.js ├── test ├── .eslintrc.yml ├── fixtures │ ├── basic.js │ ├── basic.png │ ├── big-dataset.js │ ├── big-dataset.png │ ├── mode-data.js │ ├── mode-data.png │ ├── mode-label.js │ ├── mode-label.png │ ├── repeat.js │ ├── repeat.png │ ├── update-add.js │ ├── update-add.png │ ├── update-replace.js │ └── update-replace.png ├── index.js └── specs │ └── fixtures.spec.js └── types ├── .eslintrc.yml ├── index.esm.d.ts └── tests ├── .eslintrc.yml ├── label-mode.ts ├── options.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/npmpublish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.github/workflows/npmpublish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .DS_Store 4 | coverage 5 | -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/karma.conf.cjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/rollup.config.js -------------------------------------------------------------------------------- /sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/sample.png -------------------------------------------------------------------------------- /samples/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/.eslintrc.yml -------------------------------------------------------------------------------- /samples/bar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/bar.html -------------------------------------------------------------------------------- /samples/customize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/customize.html -------------------------------------------------------------------------------- /samples/offset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/offset.html -------------------------------------------------------------------------------- /samples/repeat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/repeat.html -------------------------------------------------------------------------------- /samples/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/style.css -------------------------------------------------------------------------------- /samples/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/update.html -------------------------------------------------------------------------------- /samples/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/samples/utils.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/src/index.js -------------------------------------------------------------------------------- /test/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/.eslintrc.yml -------------------------------------------------------------------------------- /test/fixtures/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/basic.js -------------------------------------------------------------------------------- /test/fixtures/basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/basic.png -------------------------------------------------------------------------------- /test/fixtures/big-dataset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/big-dataset.js -------------------------------------------------------------------------------- /test/fixtures/big-dataset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/big-dataset.png -------------------------------------------------------------------------------- /test/fixtures/mode-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/mode-data.js -------------------------------------------------------------------------------- /test/fixtures/mode-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/mode-data.png -------------------------------------------------------------------------------- /test/fixtures/mode-label.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/mode-label.js -------------------------------------------------------------------------------- /test/fixtures/mode-label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/mode-label.png -------------------------------------------------------------------------------- /test/fixtures/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/repeat.js -------------------------------------------------------------------------------- /test/fixtures/repeat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/repeat.png -------------------------------------------------------------------------------- /test/fixtures/update-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/update-add.js -------------------------------------------------------------------------------- /test/fixtures/update-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/update-add.png -------------------------------------------------------------------------------- /test/fixtures/update-replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/update-replace.js -------------------------------------------------------------------------------- /test/fixtures/update-replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/fixtures/update-replace.png -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/index.js -------------------------------------------------------------------------------- /test/specs/fixtures.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/test/specs/fixtures.spec.js -------------------------------------------------------------------------------- /types/.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/types/.eslintrc.yml -------------------------------------------------------------------------------- /types/index.esm.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/types/index.esm.d.ts -------------------------------------------------------------------------------- /types/tests/.eslintrc.yml: -------------------------------------------------------------------------------- 1 | rules: 2 | '@typescript-eslint/no-unused-vars': 'off' 3 | -------------------------------------------------------------------------------- /types/tests/label-mode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/types/tests/label-mode.ts -------------------------------------------------------------------------------- /types/tests/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/types/tests/options.ts -------------------------------------------------------------------------------- /types/tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kurkle/chartjs-plugin-autocolors/HEAD/types/tests/tsconfig.json --------------------------------------------------------------------------------