vis.js is a dynamic, browser-based visualization library
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

263 lines
7.3 KiB

  1. /**
  2. * This object contains all possible options. It will check if the types are correct, if required if the option is one
  3. * of the allowed values.
  4. *
  5. * __any__ means that the name of the property does not matter.
  6. * __type__ is a required field for all objects and contains the allowed types of all objects
  7. */
  8. let string = 'string';
  9. let boolean = 'boolean';
  10. let number = 'number';
  11. let array = 'array';
  12. let date = 'date';
  13. let object = 'object'; // should only be in a __type__ property
  14. let dom = 'dom';
  15. let moment = 'moment';
  16. let any = 'any';
  17. let allOptions = {
  18. configure: {
  19. enabled: {boolean},
  20. filter: {boolean,'function': 'function'},
  21. container: {dom},
  22. __type__: {object,boolean,'function': 'function'}
  23. },
  24. //globals :
  25. yAxisOrientation: {string:['left','right']},
  26. defaultGroup: {string},
  27. sort: {boolean},
  28. sampling: {boolean},
  29. stack:{boolean},
  30. graphHeight: {string, number},
  31. shaded: {
  32. enabled: {boolean},
  33. orientation: {string:['bottom','top']}, // top, bottom
  34. __type__: {boolean,object}
  35. },
  36. style: {string:['line','bar','points']}, // line, bar
  37. barChart: {
  38. width: {number},
  39. sideBySide: {boolean},
  40. align: {string:['left','center','right']},
  41. __type__: {object}
  42. },
  43. interpolation: {
  44. enabled: {boolean},
  45. parametrization: {string:['centripetal', 'chordal','uniform']}, // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)
  46. alpha: {number},
  47. __type__: {object,boolean}
  48. },
  49. drawPoints: {
  50. enabled: {boolean},
  51. onRender: { 'function': 'function' },
  52. size: {number},
  53. style: {string:['square','circle']}, // square, circle
  54. __type__: {object,boolean,'function': 'function'}
  55. },
  56. dataAxis: {
  57. showMinorLabels: {boolean},
  58. showMajorLabels: {boolean},
  59. icons: {boolean},
  60. width: {string, number},
  61. visible: {boolean},
  62. alignZeros: {boolean},
  63. left:{
  64. range: {min:{number},max:{number},__type__: {object}},
  65. format: {'function': 'function'},
  66. title: {text:{string,number},style:{string},__type__: {object}},
  67. __type__: {object}
  68. },
  69. right:{
  70. range: {min:{number},max:{number},__type__: {object}},
  71. format: {'function': 'function'},
  72. title: {text:{string,number},style:{string},__type__: {object}},
  73. __type__: {object}
  74. },
  75. __type__: {object}
  76. },
  77. legend: {
  78. enabled: {boolean},
  79. icons: {boolean},
  80. left: {
  81. visible: {boolean},
  82. position: {string:['top-right','bottom-right','top-left','bottom-left']},
  83. __type__: {object}
  84. },
  85. right: {
  86. visible: {boolean},
  87. position: {string:['top-right','bottom-right','top-left','bottom-left']},
  88. __type__: {object}
  89. },
  90. __type__: {object,boolean}
  91. },
  92. groups: {
  93. visibility: {any},
  94. __type__: {object}
  95. },
  96. autoResize: {boolean},
  97. throttleRedraw: {number},
  98. clickToUse: {boolean},
  99. end: {number, date, string, moment},
  100. format: {
  101. minorLabels: {
  102. millisecond: {string,'undefined': 'undefined'},
  103. second: {string,'undefined': 'undefined'},
  104. minute: {string,'undefined': 'undefined'},
  105. hour: {string,'undefined': 'undefined'},
  106. weekday: {string,'undefined': 'undefined'},
  107. day: {string,'undefined': 'undefined'},
  108. month: {string,'undefined': 'undefined'},
  109. year: {string,'undefined': 'undefined'},
  110. __type__: {object}
  111. },
  112. majorLabels: {
  113. millisecond: {string,'undefined': 'undefined'},
  114. second: {string,'undefined': 'undefined'},
  115. minute: {string,'undefined': 'undefined'},
  116. hour: {string,'undefined': 'undefined'},
  117. weekday: {string,'undefined': 'undefined'},
  118. day: {string,'undefined': 'undefined'},
  119. month: {string,'undefined': 'undefined'},
  120. year: {string,'undefined': 'undefined'},
  121. __type__: {object}
  122. },
  123. __type__: {object}
  124. },
  125. moment: {'function': 'function'},
  126. height: {string, number},
  127. hiddenDates: {object, array},
  128. locale:{string},
  129. locales:{
  130. __any__: {any},
  131. __type__: {object}
  132. },
  133. max: {date, number, string, moment},
  134. maxHeight: {number, string},
  135. min: {date, number, string, moment},
  136. minHeight: {number, string},
  137. moveable: {boolean},
  138. multiselect: {boolean},
  139. orientation: {string},
  140. showCurrentTime: {boolean},
  141. showMajorLabels: {boolean},
  142. showMinorLabels: {boolean},
  143. start: {date, number, string, moment},
  144. timeAxis: {
  145. scale: {string,'undefined': 'undefined'},
  146. step: {number,'undefined': 'undefined'},
  147. __type__: {object}
  148. },
  149. width: {string, number},
  150. zoomable: {boolean},
  151. zoomKey: {string: ['ctrlKey', 'altKey', 'metaKey', '']},
  152. zoomMax: {number},
  153. zoomMin: {number},
  154. __type__: {object}
  155. };
  156. let configureOptions = {
  157. global: {
  158. //yAxisOrientation: ['left','right'], // TDOO: enable as soon as Grahp2d doesn't crash when changing this on the fly
  159. sort: true,
  160. sampling: true,
  161. stack:false,
  162. shaded: {
  163. enabled: false,
  164. orientation: ['top','bottom'] // top, bottom
  165. },
  166. style: ['line','bar','points'], // line, bar
  167. barChart: {
  168. width: [50,5,100,5],
  169. sideBySide: false,
  170. align: ['left','center','right'] // left, center, right
  171. },
  172. interpolation: {
  173. enabled: true,
  174. parametrization: ['centripetal','chordal','uniform'] // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)
  175. },
  176. drawPoints: {
  177. enabled: true,
  178. size: [6,2,30,1],
  179. style: ['square', 'circle'] // square, circle
  180. },
  181. dataAxis: {
  182. showMinorLabels: true,
  183. showMajorLabels: true,
  184. icons: false,
  185. width: [40,0,200,1],
  186. visible: true,
  187. alignZeros: true,
  188. left:{
  189. //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined},
  190. //format: function (value) {return value;},
  191. title: {text:'',style:''}
  192. },
  193. right:{
  194. //range: {min:'undefined': 'undefined'ined,max:'undefined': 'undefined'ined},
  195. //format: function (value) {return value;},
  196. title: {text:'',style:''}
  197. }
  198. },
  199. legend: {
  200. enabled: false,
  201. icons: true,
  202. left: {
  203. visible: true,
  204. position: ['top-right','bottom-right','top-left','bottom-left'] // top/bottom - left,right
  205. },
  206. right: {
  207. visible: true,
  208. position: ['top-right','bottom-right','top-left','bottom-left'] // top/bottom - left,right
  209. }
  210. },
  211. autoResize: true,
  212. throttleRedraw: 0,
  213. clickToUse: false,
  214. end: '',
  215. format: {
  216. minorLabels: {
  217. millisecond:'SSS',
  218. second: 's',
  219. minute: 'HH:mm',
  220. hour: 'HH:mm',
  221. weekday: 'ddd D',
  222. day: 'D',
  223. month: 'MMM',
  224. year: 'YYYY'
  225. },
  226. majorLabels: {
  227. millisecond:'HH:mm:ss',
  228. second: 'D MMMM HH:mm',
  229. minute: 'ddd D MMMM',
  230. hour: 'ddd D MMMM',
  231. weekday: 'MMMM YYYY',
  232. day: 'MMMM YYYY',
  233. month: 'YYYY',
  234. year: ''
  235. }
  236. },
  237. height: '',
  238. locale: '',
  239. max: '',
  240. maxHeight: '',
  241. min: '',
  242. minHeight: '',
  243. moveable:true,
  244. orientation: ['both', 'bottom', 'top'],
  245. showCurrentTime: false,
  246. showMajorLabels: true,
  247. showMinorLabels: true,
  248. start: '',
  249. width: '100%',
  250. zoomable: true,
  251. zoomKey: ['ctrlKey', 'altKey', 'metaKey', ''],
  252. zoomMax: [315360000000000, 10, 315360000000000, 1],
  253. zoomMin: [10, 10, 315360000000000, 1]
  254. }
  255. };
  256. export {allOptions, configureOptions};