This repository was archived by the owner on Nov 25, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 6666
6767 setTimeout ( function ( ) {
6868 const vs = boxplotData . datasets [ 0 ] . data [ 0 ] ;
69- boxplotData . datasets [ 0 ] . data [ 0 ] = randomValues ( 100 , 8 , 19 ) ;
69+ boxplotData . datasets [ 0 ] . data [ 0 ] = randomValues ( 100 , 4 , 19 ) ;
7070 window . myBar . update ( ) ;
71- } , 1000 ) ;
71+ } , 2000 ) ;
7272 </ script >
7373</ body >
7474
Original file line number Diff line number Diff line change @@ -32,11 +32,11 @@ const BoxAndWiskers = Chart.elements.BoxAndWhiskers = ArrayElementBase.extend({
3232 transition ( ease ) {
3333 const r = Chart . Element . prototype . transition . call ( this , ease ) ;
3434 const model = this . _model ;
35- const start = this . _start ;
35+ const start = this . _start ;
3636 const view = this . _view ;
3737
38- // No animation -> No Transition
39- if ( ! model || ease === 1 ) {
38+ // No animation -> No Transition
39+ if ( ! model || ease === 1 ) {
4040 return r ;
4141 }
4242 if ( start . boxplot == null ) {
Original file line number Diff line number Diff line change @@ -35,11 +35,11 @@ const Violin = Chart.elements.Violin = ArrayElementBase.extend({
3535 transition ( ease ) {
3636 const r = Chart . Element . prototype . transition . call ( this , ease ) ;
3737 const model = this . _model ;
38- const start = this . _start ;
38+ const start = this . _start ;
3939 const view = this . _view ;
4040
41- // No animation -> No Transition
42- if ( ! model || ease === 1 ) {
41+ // No animation -> No Transition
42+ if ( ! model || ease === 1 ) {
4343 return r ;
4444 }
4545 if ( start . violin == null ) {
You can’t perform that action at this time.
0 commit comments