]> git.ipfire.org Git - thirdparty/Chart.js.git/commit
Implement `dataset.order` (#6268)
authorJukka Kurkela <jukka.kurkela@gmail.com>
Tue, 22 Oct 2019 23:14:54 +0000 (02:14 +0300)
committerEvert Timberg <evert.timberg+github@gmail.com>
Tue, 22 Oct 2019 23:14:54 +0000 (19:14 -0400)
commit6b6f1a4c51a79b4d293f7433a54d5ca743b0921d
tree3f00ca8259b8d5de7173de3ee4ea47ef42287a73
parentfeaf418d4eab07b7c313a8f392a979ab2e4bc9c9
Implement `dataset.order` (#6268)

Allow sorting datasets based on the `order` property
30 files changed:
docs/charts/bar.md
docs/charts/bubble.md
docs/charts/line.md
docs/charts/mixed.md
docs/charts/polar.md
docs/charts/radar.md
docs/charts/scatter.md
src/controllers/controller.bar.js
src/controllers/controller.line.js
src/core/core.controller.js
src/core/core.interaction.js
src/core/core.scale.js
src/core/core.tooltip.js
src/plugins/plugin.filler.js
src/plugins/plugin.legend.js
src/scales/scale.linear.js
test/fixtures/controller.bar/stacking/order-default.json [new file with mode: 0644]
test/fixtures/controller.bar/stacking/order-default.png [new file with mode: 0644]
test/fixtures/controller.bar/stacking/order-specified.json [new file with mode: 0644]
test/fixtures/controller.bar/stacking/order-specified.png [new file with mode: 0644]
test/fixtures/controller.line/fill/order-default.js [new file with mode: 0644]
test/fixtures/controller.line/fill/order-default.png [new file with mode: 0644]
test/fixtures/controller.line/fill/order.js [new file with mode: 0644]
test/fixtures/controller.line/fill/order.png [new file with mode: 0644]
test/fixtures/controller.line/stacking/order-default.js [new file with mode: 0644]
test/fixtures/controller.line/stacking/order-default.png [new file with mode: 0644]
test/fixtures/controller.line/stacking/order-specified.js [new file with mode: 0644]
test/fixtures/controller.line/stacking/order-specified.png [new file with mode: 0644]
test/specs/core.tooltip.tests.js
test/specs/plugin.legend.tests.js