Browse Source

Fixed #2458: Allow graph2D options to be undefined (#2634)

runTests
Uli Fahrer 7 years ago
committed by yotamberk
parent
commit
1393eeece0
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      lib/timeline/optionsGraph2d.js

+ 4
- 4
lib/timeline/optionsGraph2d.js View File

@ -66,15 +66,15 @@ let allOptions = {
visible: {'boolean': bool},
alignZeros: {'boolean': bool},
left:{
range: {min:{number},max:{number},__type__: {object}},
range: {min:{number,'undefined': 'undefined'},max:{number,'undefined': 'undefined'},__type__: {object}},
format: {'function': 'function'},
title: {text:{string,number},style:{string},__type__: {object}},
title: {text:{string,number,'undefined': 'undefined'},style:{string,'undefined': 'undefined'},__type__: {object}},
__type__: {object}
},
right:{
range: {min:{number},max:{number},__type__: {object}},
range: {min:{number,'undefined': 'undefined'},max:{number,'undefined': 'undefined'},__type__: {object}},
format: {'function': 'function'},
title: {text:{string,number},style:{string},__type__: {object}},
title: {text:{string,number,'undefined': 'undefined'},style:{string,'undefined': 'undefined'},__type__: {object}},
__type__: {object}
},
__type__: {object}

Loading…
Cancel
Save