]> git.ipfire.org Git - thirdparty/Chart.js.git/commit
Change `scale.ticks` back to an array of strings (#4573)
authorSimon Brunel <simonbrunel@users.noreply.github.com>
Sat, 29 Jul 2017 19:26:36 +0000 (21:26 +0200)
committerGitHub <noreply@github.com>
Sat, 29 Jul 2017 19:26:36 +0000 (21:26 +0200)
commit53b7a6392fe839a72c10eb8f7e24a5581302394d
tree7870c7fb240597017086bc9c0afa8d3e171256d4
parent56fdd7ebc10c91834361a6228f2ebdb09530d690
Change `scale.ticks` back to an array of strings (#4573)

Internal ticks are now stored as objects in the PRIVATE this._ticks member and must not be accessed directly from outside this class. this.ticks is around for a long time and hasn't been marked as private, so we can't change its structure without unexpected breaking changes. If you need to access the scale ticks, use scale.getTicks() instead.
src/controllers/controller.bar.js
src/core/core.scale.js
src/scales/scale.time.js
test/specs/global.deprecations.tests.js
test/specs/scale.time.tests.js