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.

1103 lines
35 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
  1. var util = require('../../util');
  2. var DOMutil = require('../../DOMutil');
  3. var DataSet = require('../../DataSet');
  4. var DataView = require('../../DataView');
  5. var Component = require('./Component');
  6. var DataAxis = require('./DataAxis');
  7. var GraphGroup = require('./GraphGroup');
  8. var Legend = require('./Legend');
  9. var Bars = require('./graph2d_types/bar');
  10. var Lines = require('./graph2d_types/line');
  11. var Points = require('./graph2d_types/points');
  12. var UNGROUPED = '__ungrouped__'; // reserved group id for ungrouped items
  13. /**
  14. * This is the constructor of the LineGraph. It requires a Timeline body and options.
  15. *
  16. * @param body
  17. * @param options
  18. * @constructor
  19. */
  20. function LineGraph(body, options) {
  21. this.id = util.randomUUID();
  22. this.body = body;
  23. this.defaultOptions = {
  24. yAxisOrientation: 'left',
  25. defaultGroup: 'default',
  26. sort: true,
  27. sampling: true,
  28. stack: false,
  29. graphHeight: '400px',
  30. shaded: {
  31. enabled: false,
  32. orientation: 'bottom' // top, bottom, zero
  33. },
  34. style: 'line', // line, bar
  35. barChart: {
  36. width: 50,
  37. sideBySide: false,
  38. align: 'center' // left, center, right
  39. },
  40. interpolation: {
  41. enabled: true,
  42. parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)
  43. alpha: 0.5
  44. },
  45. drawPoints: {
  46. enabled: true,
  47. size: 6,
  48. style: 'square' // square, circle
  49. },
  50. dataAxis: {}, //Defaults are done on DataAxis level
  51. legend: {}, //Defaults are done on Legend level
  52. groups: {
  53. visibility: {}
  54. }
  55. };
  56. // options is shared by this lineGraph and all its items
  57. this.options = util.extend({}, this.defaultOptions);
  58. this.dom = {};
  59. this.props = {};
  60. this.hammer = null;
  61. this.groups = {};
  62. this.abortedGraphUpdate = false;
  63. this.updateSVGheight = false;
  64. this.updateSVGheightOnResize = false;
  65. this.forceGraphUpdate = true;
  66. var me = this;
  67. this.itemsData = null; // DataSet
  68. this.groupsData = null; // DataSet
  69. // listeners for the DataSet of the items
  70. this.itemListeners = {
  71. 'add': function (event, params, senderId) {
  72. me._onAdd(params.items);
  73. },
  74. 'update': function (event, params, senderId) {
  75. me._onUpdate(params.items);
  76. },
  77. 'remove': function (event, params, senderId) {
  78. me._onRemove(params.items);
  79. }
  80. };
  81. // listeners for the DataSet of the groups
  82. this.groupListeners = {
  83. 'add': function (event, params, senderId) {
  84. me._onAddGroups(params.items);
  85. },
  86. 'update': function (event, params, senderId) {
  87. me._onUpdateGroups(params.items);
  88. },
  89. 'remove': function (event, params, senderId) {
  90. me._onRemoveGroups(params.items);
  91. }
  92. };
  93. this.items = {}; // object with an Item for every data item
  94. this.selection = []; // list with the ids of all selected nodes
  95. this.lastStart = this.body.range.start;
  96. this.touchParams = {}; // stores properties while dragging
  97. this.svgElements = {};
  98. this.setOptions(options);
  99. this.groupsUsingDefaultStyles = [0];
  100. this.body.emitter.on('rangechanged', function () {
  101. me.lastStart = me.body.range.start;
  102. me.svg.style.left = util.option.asSize(-me.props.width);
  103. me.forceGraphUpdate = true;
  104. //Is this local redraw necessary? (Core also does a change event!)
  105. me.redraw.call(me);
  106. });
  107. // create the HTML DOM
  108. this._create();
  109. this.framework = {svg: this.svg, svgElements: this.svgElements, options: this.options, groups: this.groups};
  110. }
  111. LineGraph.prototype = new Component();
  112. /**
  113. * Create the HTML DOM for the ItemSet
  114. */
  115. LineGraph.prototype._create = function () {
  116. var frame = document.createElement('div');
  117. frame.className = 'vis-line-graph';
  118. this.dom.frame = frame;
  119. // create svg element for graph drawing.
  120. this.svg = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
  121. this.svg.style.position = 'relative';
  122. this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px';
  123. this.svg.style.display = 'block';
  124. frame.appendChild(this.svg);
  125. // data axis
  126. this.options.dataAxis.orientation = 'left';
  127. this.yAxisLeft = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups);
  128. this.options.dataAxis.orientation = 'right';
  129. this.yAxisRight = new DataAxis(this.body, this.options.dataAxis, this.svg, this.options.groups);
  130. delete this.options.dataAxis.orientation;
  131. // legends
  132. this.legendLeft = new Legend(this.body, this.options.legend, 'left', this.options.groups);
  133. this.legendRight = new Legend(this.body, this.options.legend, 'right', this.options.groups);
  134. this.show();
  135. };
  136. /**
  137. * set the options of the LineGraph. the mergeOptions is used for subObjects that have an enabled element.
  138. * @param {object} options
  139. */
  140. LineGraph.prototype.setOptions = function (options) {
  141. if (options) {
  142. var fields = ['sampling', 'defaultGroup', 'stack', 'height', 'graphHeight', 'yAxisOrientation', 'style', 'barChart', 'dataAxis', 'sort', 'groups'];
  143. if (options.graphHeight === undefined && options.height !== undefined) {
  144. this.updateSVGheight = true;
  145. this.updateSVGheightOnResize = true;
  146. }
  147. else if (this.body.domProps.centerContainer.height !== undefined && options.graphHeight !== undefined) {
  148. if (parseInt((options.graphHeight + '').replace("px", '')) < this.body.domProps.centerContainer.height) {
  149. this.updateSVGheight = true;
  150. }
  151. }
  152. util.selectiveDeepExtend(fields, this.options, options);
  153. util.mergeOptions(this.options, options, 'interpolation');
  154. util.mergeOptions(this.options, options, 'drawPoints');
  155. util.mergeOptions(this.options, options, 'shaded');
  156. util.mergeOptions(this.options, options, 'legend');
  157. if (options.interpolation) {
  158. if (typeof options.interpolation == 'object') {
  159. if (options.interpolation.parametrization) {
  160. if (options.interpolation.parametrization == 'uniform') {
  161. this.options.interpolation.alpha = 0;
  162. }
  163. else if (options.interpolation.parametrization == 'chordal') {
  164. this.options.interpolation.alpha = 1.0;
  165. }
  166. else {
  167. this.options.interpolation.parametrization = 'centripetal';
  168. this.options.interpolation.alpha = 0.5;
  169. }
  170. }
  171. }
  172. }
  173. if (this.yAxisLeft) {
  174. if (options.dataAxis !== undefined) {
  175. this.yAxisLeft.setOptions(this.options.dataAxis);
  176. this.yAxisRight.setOptions(this.options.dataAxis);
  177. }
  178. }
  179. if (this.legendLeft) {
  180. if (options.legend !== undefined) {
  181. this.legendLeft.setOptions(this.options.legend);
  182. this.legendRight.setOptions(this.options.legend);
  183. }
  184. }
  185. if (this.groups.hasOwnProperty(UNGROUPED)) {
  186. this.groups[UNGROUPED].setOptions(options);
  187. }
  188. }
  189. // this is used to redraw the graph if the visibility of the groups is changed.
  190. if (this.dom.frame) { //not on initial run?
  191. this.forceGraphUpdate=true;
  192. this.body.emitter.emit("_change",{queue: true});
  193. }
  194. };
  195. /**
  196. * Hide the component from the DOM
  197. */
  198. LineGraph.prototype.hide = function () {
  199. // remove the frame containing the items
  200. if (this.dom.frame.parentNode) {
  201. this.dom.frame.parentNode.removeChild(this.dom.frame);
  202. }
  203. };
  204. /**
  205. * Show the component in the DOM (when not already visible).
  206. * @return {Boolean} changed
  207. */
  208. LineGraph.prototype.show = function () {
  209. // show frame containing the items
  210. if (!this.dom.frame.parentNode) {
  211. this.body.dom.center.appendChild(this.dom.frame);
  212. }
  213. };
  214. /**
  215. * Set items
  216. * @param {vis.DataSet | null} items
  217. */
  218. LineGraph.prototype.setItems = function (items) {
  219. var me = this,
  220. ids,
  221. oldItemsData = this.itemsData;
  222. // replace the dataset
  223. if (!items) {
  224. this.itemsData = null;
  225. }
  226. else if (items instanceof DataSet || items instanceof DataView) {
  227. this.itemsData = items;
  228. }
  229. else {
  230. throw new TypeError('Data must be an instance of DataSet or DataView');
  231. }
  232. if (oldItemsData) {
  233. // unsubscribe from old dataset
  234. util.forEach(this.itemListeners, function (callback, event) {
  235. oldItemsData.off(event, callback);
  236. });
  237. // remove all drawn items
  238. ids = oldItemsData.getIds();
  239. this._onRemove(ids);
  240. }
  241. if (this.itemsData) {
  242. // subscribe to new dataset
  243. var id = this.id;
  244. util.forEach(this.itemListeners, function (callback, event) {
  245. me.itemsData.on(event, callback, id);
  246. });
  247. // add all new items
  248. ids = this.itemsData.getIds();
  249. this._onAdd(ids);
  250. }
  251. };
  252. /**
  253. * Set groups
  254. * @param {vis.DataSet} groups
  255. */
  256. LineGraph.prototype.setGroups = function (groups) {
  257. var me = this;
  258. var ids;
  259. // unsubscribe from current dataset
  260. if (this.groupsData) {
  261. util.forEach(this.groupListeners, function (callback, event) {
  262. me.groupsData.off(event, callback);
  263. });
  264. // remove all drawn groups
  265. ids = this.groupsData.getIds();
  266. this.groupsData = null;
  267. for (var i = 0; i < ids.length; i++) {
  268. this._removeGroup(ids[i]);
  269. }
  270. }
  271. // replace the dataset
  272. if (!groups) {
  273. this.groupsData = null;
  274. }
  275. else if (groups instanceof DataSet || groups instanceof DataView) {
  276. this.groupsData = groups;
  277. }
  278. else {
  279. throw new TypeError('Data must be an instance of DataSet or DataView');
  280. }
  281. if (this.groupsData) {
  282. // subscribe to new dataset
  283. var id = this.id;
  284. util.forEach(this.groupListeners, function (callback, event) {
  285. me.groupsData.on(event, callback, id);
  286. });
  287. // draw all ms
  288. ids = this.groupsData.getIds();
  289. this._onAddGroups(ids);
  290. }
  291. };
  292. LineGraph.prototype._onUpdate = function (ids) {
  293. this._updateAllGroupData(ids);
  294. };
  295. LineGraph.prototype._onAdd = function (ids) {
  296. this._onUpdate(ids);
  297. };
  298. LineGraph.prototype._onRemove = function (ids) {
  299. this._onUpdate(ids);
  300. };
  301. LineGraph.prototype._onUpdateGroups = function (groupIds) {
  302. this._updateAllGroupData(null, groupIds);
  303. };
  304. LineGraph.prototype._onAddGroups = function (groupIds) {
  305. this._onUpdateGroups(groupIds);
  306. };
  307. /**
  308. * this cleans the group out off the legends and the dataaxis, updates the ungrouped and updates the graph
  309. * @param {Array} groupIds
  310. * @private
  311. */
  312. LineGraph.prototype._onRemoveGroups = function (groupIds) {
  313. for (var i = 0; i < groupIds.length; i++) {
  314. this._removeGroup(groupIds[i]);
  315. }
  316. this.forceGraphUpdate = true;
  317. this.body.emitter.emit("_change",{queue: true});
  318. };
  319. /**
  320. * this cleans the group out off the legends and the dataaxis
  321. * @param groupId
  322. * @private
  323. */
  324. LineGraph.prototype._removeGroup = function (groupId) {
  325. if (this.groups.hasOwnProperty(groupId)) {
  326. if (this.groups[groupId].options.yAxisOrientation == 'right') {
  327. this.yAxisRight.removeGroup(groupId);
  328. this.legendRight.removeGroup(groupId);
  329. this.legendRight.redraw();
  330. }
  331. else {
  332. this.yAxisLeft.removeGroup(groupId);
  333. this.legendLeft.removeGroup(groupId);
  334. this.legendLeft.redraw();
  335. }
  336. delete this.groups[groupId];
  337. }
  338. }
  339. /**
  340. * update a group object with the group dataset entree
  341. *
  342. * @param group
  343. * @param groupId
  344. * @private
  345. */
  346. LineGraph.prototype._updateGroup = function (group, groupId) {
  347. if (!this.groups.hasOwnProperty(groupId)) {
  348. this.groups[groupId] = new GraphGroup(group, groupId, this.options, this.groupsUsingDefaultStyles);
  349. if (this.groups[groupId].options.yAxisOrientation == 'right') {
  350. this.yAxisRight.addGroup(groupId, this.groups[groupId]);
  351. this.legendRight.addGroup(groupId, this.groups[groupId]);
  352. }
  353. else {
  354. this.yAxisLeft.addGroup(groupId, this.groups[groupId]);
  355. this.legendLeft.addGroup(groupId, this.groups[groupId]);
  356. }
  357. }
  358. else {
  359. this.groups[groupId].update(group);
  360. if (this.groups[groupId].options.yAxisOrientation == 'right') {
  361. this.yAxisRight.updateGroup(groupId, this.groups[groupId]);
  362. this.legendRight.updateGroup(groupId, this.groups[groupId]);
  363. //If yAxisOrientation changed, clean out the group from the other axis.
  364. this.yAxisLeft.removeGroup(groupId);
  365. this.legendLeft.removeGroup(groupId);
  366. }
  367. else {
  368. this.yAxisLeft.updateGroup(groupId, this.groups[groupId]);
  369. this.legendLeft.updateGroup(groupId, this.groups[groupId]);
  370. //If yAxisOrientation changed, clean out the group from the other axis.
  371. this.yAxisRight.removeGroup(groupId);
  372. this.legendRight.removeGroup(groupId);
  373. }
  374. }
  375. this.legendLeft.redraw();
  376. this.legendRight.redraw();
  377. };
  378. /**
  379. * this updates all groups, it is used when there is an update the the itemset.
  380. *
  381. * @param {Array} ids
  382. * @param {Array} groupIds
  383. * @private
  384. */
  385. LineGraph.prototype._updateAllGroupData = function (ids, groupIds) {
  386. if (this.itemsData != null) {
  387. var groupsContent = {};
  388. var items = this.itemsData.get();
  389. var fieldId = this.itemsData._fieldId;
  390. var idMap = {};
  391. if (ids){
  392. ids.map(function (id) {
  393. idMap[id] = id;
  394. });
  395. }
  396. //pre-Determine array sizes, for more efficient memory claim
  397. var groupCounts = {};
  398. for (var i = 0; i < items.length; i++) {
  399. var item = items[i];
  400. var groupId = item.group;
  401. if (groupId === null || groupId === undefined) {
  402. groupId = UNGROUPED;
  403. }
  404. groupCounts.hasOwnProperty(groupId) ? groupCounts[groupId]++ : groupCounts[groupId] = 1;
  405. }
  406. //Pre-load arrays from existing groups if items are not changed (not in ids)
  407. var existingItemsMap = {};
  408. if (!groupIds && ids) {
  409. for (var groupId in this.groups) {
  410. if (this.groups.hasOwnProperty(groupId)) {
  411. var group = this.groups[groupId];
  412. var existing_items = group.getItems();
  413. groupsContent[groupId] = existing_items.filter(function (item) {
  414. existingItemsMap[item[fieldId]] = item[fieldId];
  415. return (item[fieldId] !== idMap[item[fieldId]]);
  416. });
  417. var newLength = groupCounts[groupId];
  418. groupCounts[groupId] -= groupsContent[groupId].length;
  419. if (groupsContent[groupId].length < newLength) {
  420. groupsContent[groupId][newLength - 1] = {};
  421. }
  422. }
  423. }
  424. }
  425. //Now insert data into the arrays.
  426. for (var i = 0; i < items.length; i++) {
  427. var item = items[i];
  428. var groupId = item.group;
  429. if (groupId === null || groupId === undefined) {
  430. groupId = UNGROUPED;
  431. }
  432. if (!groupIds && ids && (item[fieldId] !== idMap[item[fieldId]]) && existingItemsMap.hasOwnProperty(item[fieldId])) {
  433. continue;
  434. }
  435. if (!groupsContent.hasOwnProperty(groupId)) {
  436. groupsContent[groupId] = new Array(groupCounts[groupId]);
  437. }
  438. //Copy data (because of unmodifiable DataView input.
  439. var extended = util.bridgeObject(item);
  440. extended.x = util.convert(item.x, 'Date');
  441. extended.end = util.convert(item.end, 'Date');
  442. extended.orginalY = item.y; //real Y
  443. extended.y = Number(item.y);
  444. extended[fieldId] = item[fieldId];
  445. var index= groupsContent[groupId].length - groupCounts[groupId]--;
  446. groupsContent[groupId][index] = extended;
  447. }
  448. //Make sure all groups are present, to allow removal of old groups
  449. for (var groupId in this.groups){
  450. if (this.groups.hasOwnProperty(groupId)){
  451. if (!groupsContent.hasOwnProperty(groupId)) {
  452. groupsContent[groupId] = new Array(0);
  453. }
  454. }
  455. }
  456. //Update legendas, style and axis
  457. for (var groupId in groupsContent) {
  458. if (groupsContent.hasOwnProperty(groupId)) {
  459. if (groupsContent[groupId].length == 0) {
  460. if (this.groups.hasOwnProperty(groupId)) {
  461. this._removeGroup(groupId);
  462. }
  463. } else {
  464. var group = undefined;
  465. if (this.groupsData != undefined) {
  466. group = this.groupsData.get(groupId);
  467. }
  468. if (group == undefined) {
  469. group = {id: groupId, content: this.options.defaultGroup + groupId};
  470. }
  471. this._updateGroup(group, groupId);
  472. this.groups[groupId].setItems(groupsContent[groupId]);
  473. }
  474. }
  475. }
  476. this.forceGraphUpdate = true;
  477. this.body.emitter.emit("_change",{queue: true});
  478. }
  479. };
  480. /**
  481. * Redraw the component, mandatory function
  482. * @return {boolean} Returns true if the component is resized
  483. */
  484. LineGraph.prototype.redraw = function () {
  485. var resized = false;
  486. // calculate actual size and position
  487. this.props.width = this.dom.frame.offsetWidth;
  488. this.props.height = this.body.domProps.centerContainer.height
  489. - this.body.domProps.border.top
  490. - this.body.domProps.border.bottom;
  491. // check if this component is resized
  492. resized = this._isResized() || resized;
  493. // check whether zoomed (in that case we need to re-stack everything)
  494. var visibleInterval = this.body.range.end - this.body.range.start;
  495. var zoomed = (visibleInterval != this.lastVisibleInterval);
  496. this.lastVisibleInterval = visibleInterval;
  497. // the svg element is three times as big as the width, this allows for fully dragging left and right
  498. // without reloading the graph. the controls for this are bound to events in the constructor
  499. if (resized == true) {
  500. this.svg.style.width = util.option.asSize(3 * this.props.width);
  501. this.svg.style.left = util.option.asSize(-this.props.width);
  502. // if the height of the graph is set as proportional, change the height of the svg
  503. if ((this.options.height + '').indexOf("%") != -1 || this.updateSVGheightOnResize == true) {
  504. this.updateSVGheight = true;
  505. }
  506. }
  507. // update the height of the graph on each redraw of the graph.
  508. if (this.updateSVGheight == true) {
  509. if (this.options.graphHeight != this.props.height + 'px') {
  510. this.options.graphHeight = this.props.height + 'px';
  511. this.svg.style.height = this.props.height + 'px';
  512. }
  513. this.updateSVGheight = false;
  514. }
  515. else {
  516. this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px';
  517. }
  518. // zoomed is here to ensure that animations are shown correctly.
  519. if (resized == true || zoomed == true || this.abortedGraphUpdate == true || this.forceGraphUpdate == true) {
  520. resized = this._updateGraph() || resized;
  521. this.forceGraphUpdate = false;
  522. }
  523. else {
  524. // move the whole svg while dragging
  525. if (this.lastStart != 0) {
  526. var offset = this.body.range.start - this.lastStart;
  527. var range = this.body.range.end - this.body.range.start;
  528. if (this.props.width != 0) {
  529. var rangePerPixelInv = this.props.width / range;
  530. var xOffset = offset * rangePerPixelInv;
  531. this.svg.style.left = (-this.props.width - xOffset) + 'px';
  532. }
  533. }
  534. }
  535. this.legendLeft.redraw();
  536. this.legendRight.redraw();
  537. return resized;
  538. };
  539. LineGraph.prototype._getSortedGroupIds = function(){
  540. // getting group Ids
  541. var grouplist = [];
  542. for (var groupId in this.groups) {
  543. if (this.groups.hasOwnProperty(groupId)) {
  544. var group = this.groups[groupId];
  545. if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) {
  546. grouplist.push({id:groupId,zIndex:group.options.zIndex});
  547. }
  548. }
  549. }
  550. util.insertSort(grouplist,function(a,b){
  551. var az = a.zIndex;
  552. var bz = b.zIndex;
  553. if (az === undefined) az=0;
  554. if (bz === undefined) bz=0;
  555. return az==bz? 0: (az<bz ? -1: 1);
  556. });
  557. var groupIds = new Array(grouplist.length);
  558. for (var i=0; i< grouplist.length; i++){
  559. groupIds[i] = grouplist[i].id;
  560. }
  561. return groupIds;
  562. }
  563. /**
  564. * Update and redraw the graph.
  565. *
  566. */
  567. LineGraph.prototype._updateGraph = function () {
  568. // reset the svg elements
  569. DOMutil.prepareElements(this.svgElements);
  570. if (this.props.width != 0 && this.itemsData != null) {
  571. var group, i;
  572. var groupRanges = {};
  573. var changeCalled = false;
  574. // this is the range of the SVG canvas
  575. var minDate = this.body.util.toGlobalTime(-this.body.domProps.root.width);
  576. var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width);
  577. // getting group Ids
  578. var groupIds = this._getSortedGroupIds();
  579. if (groupIds.length > 0) {
  580. var groupsData = {};
  581. // fill groups data, this only loads the data we require based on the timewindow
  582. this._getRelevantData(groupIds, groupsData, minDate, maxDate);
  583. // apply sampling, if disabled, it will pass through this function.
  584. this._applySampling(groupIds, groupsData);
  585. // we transform the X coordinates to detect collisions
  586. for (i = 0; i < groupIds.length; i++) {
  587. this._convertXcoordinates(groupsData[groupIds[i]]);
  588. }
  589. // now all needed data has been collected we start the processing.
  590. this._getYRanges(groupIds, groupsData, groupRanges);
  591. // update the Y axis first, we use this data to draw at the correct Y points
  592. changeCalled = this._updateYAxis(groupIds, groupRanges);
  593. // at changeCalled, abort this update cycle as the graph needs another update with new Width input from the Redraw container.
  594. // Cleanup SVG elements on abort.
  595. if (changeCalled == true) {
  596. DOMutil.cleanupElements(this.svgElements);
  597. this.abortedGraphUpdate = true;
  598. return true;
  599. }
  600. this.abortedGraphUpdate = false;
  601. // With the yAxis scaled correctly, use this to get the Y values of the points.
  602. var below = undefined;
  603. for (i = 0; i < groupIds.length; i++) {
  604. group = this.groups[groupIds[i]];
  605. if (this.options.stack === true && this.options.style === 'line') {
  606. if (group.options.excludeFromStacking == undefined || !group.options.excludeFromStacking) {
  607. if (below != undefined) {
  608. this._stack(groupsData[group.id], groupsData[below.id]);
  609. if (group.options.shaded.enabled == true && group.options.shaded.orientation !== "group"){
  610. if (group.options.shaded.orientation == "top" && below.options.shaded.orientation !== "group"){
  611. below.options.shaded.orientation="group";
  612. below.options.shaded.groupId=group.id;
  613. } else {
  614. group.options.shaded.orientation="group";
  615. group.options.shaded.groupId=below.id;
  616. }
  617. }
  618. }
  619. below = group;
  620. }
  621. }
  622. this._convertYcoordinates(groupsData[groupIds[i]], group);
  623. }
  624. //Precalculate paths and draw shading if appropriate. This will make sure the shading is always behind any lines.
  625. var paths = {};
  626. for (i = 0; i < groupIds.length; i++) {
  627. group = this.groups[groupIds[i]];
  628. if (group.options.style === 'line' && group.options.shaded.enabled == true) {
  629. var dataset = groupsData[groupIds[i]];
  630. if (dataset == null || dataset.length == 0) {
  631. continue;
  632. }
  633. if (!paths.hasOwnProperty(groupIds[i])) {
  634. paths[groupIds[i]] = Lines.calcPath(dataset, group);
  635. }
  636. if (group.options.shaded.orientation === "group") {
  637. var subGroupId = group.options.shaded.groupId;
  638. if (groupIds.indexOf(subGroupId) === -1) {
  639. console.log(group.id + ": Unknown shading group target given:" + subGroupId);
  640. continue;
  641. }
  642. if (!paths.hasOwnProperty(subGroupId)) {
  643. paths[subGroupId] = Lines.calcPath(groupsData[subGroupId], this.groups[subGroupId]);
  644. }
  645. Lines.drawShading(paths[groupIds[i]], group, paths[subGroupId], this.framework);
  646. }
  647. else {
  648. Lines.drawShading(paths[groupIds[i]], group, undefined, this.framework);
  649. }
  650. }
  651. }
  652. // draw the groups, calculating paths if still necessary.
  653. Bars.draw(groupIds, groupsData, this.framework);
  654. for (i = 0; i < groupIds.length; i++) {
  655. group = this.groups[groupIds[i]];
  656. if (groupsData[groupIds[i]].length > 0) {
  657. switch (group.options.style) {
  658. case "line":
  659. if (!paths.hasOwnProperty(groupIds[i])) {
  660. paths[groupIds[i]] = Lines.calcPath(groupsData[groupIds[i]], group);
  661. }
  662. Lines.draw(paths[groupIds[i]], group, this.framework);
  663. //explicit no break;
  664. case "point":
  665. //explicit no break;
  666. case "points":
  667. if (group.options.style == "point" || group.options.style == "points" || group.options.drawPoints.enabled == true) {
  668. Points.draw(groupsData[groupIds[i]], group, this.framework);
  669. }
  670. break;
  671. case "bar":
  672. // bar needs to be drawn enmasse
  673. //explicit no break
  674. default:
  675. //do nothing...
  676. }
  677. }
  678. }
  679. }
  680. }
  681. // cleanup unused svg elements
  682. DOMutil.cleanupElements(this.svgElements);
  683. return false;
  684. };
  685. LineGraph.prototype._stack = function (data, subData) {
  686. var index, dx, dy, subPrevPoint, subNextPoint;
  687. index = 0;
  688. // for each data point we look for a matching on in the set below
  689. for (var j = 0; j < data.length; j++) {
  690. subPrevPoint = undefined;
  691. subNextPoint = undefined;
  692. // we look for time matches or a before-after point
  693. for (var k = index; k < subData.length; k++) {
  694. // if times match exactly
  695. if (subData[k].x === data[j].x) {
  696. subPrevPoint = subData[k];
  697. subNextPoint = subData[k];
  698. index = k;
  699. break;
  700. }
  701. else if (subData[k].x > data[j].x) { // overshoot
  702. subNextPoint = subData[k];
  703. if (k == 0) {
  704. subPrevPoint = subNextPoint;
  705. }
  706. else {
  707. subPrevPoint = subData[k - 1];
  708. }
  709. index = k;
  710. break;
  711. }
  712. }
  713. // in case the last data point has been used, we assume it stays like this.
  714. if (subNextPoint === undefined) {
  715. subPrevPoint = subData[subData.length - 1];
  716. subNextPoint = subData[subData.length - 1];
  717. }
  718. // linear interpolation
  719. dx = subNextPoint.x - subPrevPoint.x;
  720. dy = subNextPoint.y - subPrevPoint.y;
  721. if (dx == 0) {
  722. data[j].y = data[j].orginalY + subNextPoint.y;
  723. }
  724. else {
  725. data[j].y = data[j].orginalY + (dy / dx) * (data[j].x - subPrevPoint.x) + subPrevPoint.y; // ax + b where b is data[j].y
  726. }
  727. }
  728. }
  729. /**
  730. * first select and preprocess the data from the datasets.
  731. * the groups have their preselection of data, we now loop over this data to see
  732. * what data we need to draw. Sorted data is much faster.
  733. * more optimization is possible by doing the sampling before and using the binary search
  734. * to find the end date to determine the increment.
  735. *
  736. * @param {array} groupIds
  737. * @param {object} groupsData
  738. * @param {date} minDate
  739. * @param {date} maxDate
  740. * @private
  741. */
  742. LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) {
  743. var group, i, j, item;
  744. if (groupIds.length > 0) {
  745. for (i = 0; i < groupIds.length; i++) {
  746. group = this.groups[groupIds[i]];
  747. var itemsData = group.getItems();
  748. // optimization for sorted data
  749. if (group.options.sort == true) {
  750. var dateComparator = function (a, b) {
  751. return a.getTime() == b.getTime() ? 0 : a < b ? -1 : 1
  752. };
  753. var first = Math.max(0, util.binarySearchValue(itemsData, minDate, 'x', 'before', dateComparator));
  754. var last = Math.min(itemsData.length, util.binarySearchValue(itemsData, maxDate, 'x', 'after', dateComparator) + 1);
  755. if (last <= 0) {
  756. last = itemsData.length;
  757. }
  758. var dataContainer = new Array(last-first);
  759. for (j = first; j < last; j++) {
  760. item = group.itemsData[j];
  761. dataContainer[j-first] = item;
  762. }
  763. groupsData[groupIds[i]] = dataContainer;
  764. }
  765. else {
  766. // If unsorted data, all data is relevant, just returning entire structure
  767. groupsData[groupIds[i]] = group.itemsData;
  768. }
  769. }
  770. }
  771. };
  772. /**
  773. *
  774. * @param groupIds
  775. * @param groupsData
  776. * @private
  777. */
  778. LineGraph.prototype._applySampling = function (groupIds, groupsData) {
  779. var group;
  780. if (groupIds.length > 0) {
  781. for (var i = 0; i < groupIds.length; i++) {
  782. group = this.groups[groupIds[i]];
  783. if (group.options.sampling == true) {
  784. var dataContainer = groupsData[groupIds[i]];
  785. if (dataContainer.length > 0) {
  786. var increment = 1;
  787. var amountOfPoints = dataContainer.length;
  788. // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop
  789. // of width changing of the yAxis.
  790. //TODO: This assumes sorted data, but that's not guaranteed!
  791. var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x);
  792. var pointsPerPixel = amountOfPoints / xDistance;
  793. increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel)));
  794. var sampledData = new Array(amountOfPoints);
  795. for (var j = 0; j < amountOfPoints; j += increment) {
  796. var idx = Math.round(j/increment);
  797. sampledData[idx]=dataContainer[j];
  798. }
  799. groupsData[groupIds[i]] = sampledData.splice(0,Math.round(amountOfPoints/increment));
  800. }
  801. }
  802. }
  803. }
  804. };
  805. /**
  806. *
  807. *
  808. * @param {array} groupIds
  809. * @param {object} groupsData
  810. * @param {object} groupRanges | this is being filled here
  811. * @private
  812. */
  813. LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) {
  814. var groupData, group, i;
  815. var combinedDataLeft = [];
  816. var combinedDataRight = [];
  817. var options;
  818. if (groupIds.length > 0) {
  819. for (i = 0; i < groupIds.length; i++) {
  820. groupData = groupsData[groupIds[i]];
  821. options = this.groups[groupIds[i]].options;
  822. if (groupData.length > 0) {
  823. group = this.groups[groupIds[i]];
  824. // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.
  825. if (options.stack === true && options.style === 'bar') {
  826. if (options.yAxisOrientation === 'left') {
  827. combinedDataLeft = combinedDataLeft.concat(groupData);
  828. }
  829. else {
  830. combinedDataRight = combinedDataRight.concat(groupData);
  831. }
  832. }
  833. else {
  834. groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]);
  835. }
  836. }
  837. }
  838. // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.
  839. Bars.getStackedYRange(combinedDataLeft, groupRanges, groupIds, '__barStackLeft', 'left');
  840. Bars.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__barStackRight', 'right');
  841. }
  842. };
  843. /**
  844. * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden.
  845. * @param {Array} groupIds
  846. * @param {Object} groupRanges
  847. * @private
  848. */
  849. LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) {
  850. var resized = false;
  851. var yAxisLeftUsed = false;
  852. var yAxisRightUsed = false;
  853. var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal;
  854. // if groups are present
  855. if (groupIds.length > 0) {
  856. // this is here to make sure that if there are no items in the axis but there are groups, that there is no infinite draw/redraw loop.
  857. for (var i = 0; i < groupIds.length; i++) {
  858. var group = this.groups[groupIds[i]];
  859. if (group && group.options.yAxisOrientation != 'right') {
  860. yAxisLeftUsed = true;
  861. minLeft = 1e9;
  862. maxLeft = -1e9;
  863. }
  864. else if (group && group.options.yAxisOrientation) {
  865. yAxisRightUsed = true;
  866. minRight = 1e9;
  867. maxRight = -1e9;
  868. }
  869. }
  870. // if there are items:
  871. for (var i = 0; i < groupIds.length; i++) {
  872. if (groupRanges.hasOwnProperty(groupIds[i])) {
  873. if (groupRanges[groupIds[i]].ignore !== true) {
  874. minVal = groupRanges[groupIds[i]].min;
  875. maxVal = groupRanges[groupIds[i]].max;
  876. if (groupRanges[groupIds[i]].yAxisOrientation != 'right') {
  877. yAxisLeftUsed = true;
  878. minLeft = minLeft > minVal ? minVal : minLeft;
  879. maxLeft = maxLeft < maxVal ? maxVal : maxLeft;
  880. }
  881. else {
  882. yAxisRightUsed = true;
  883. minRight = minRight > minVal ? minVal : minRight;
  884. maxRight = maxRight < maxVal ? maxVal : maxRight;
  885. }
  886. }
  887. }
  888. }
  889. if (yAxisLeftUsed == true) {
  890. this.yAxisLeft.setRange(minLeft, maxLeft);
  891. }
  892. if (yAxisRightUsed == true) {
  893. this.yAxisRight.setRange(minRight, maxRight);
  894. }
  895. }
  896. resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized;
  897. resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized;
  898. if (yAxisRightUsed == true && yAxisLeftUsed == true) {
  899. this.yAxisLeft.drawIcons = true;
  900. this.yAxisRight.drawIcons = true;
  901. }
  902. else {
  903. this.yAxisLeft.drawIcons = false;
  904. this.yAxisRight.drawIcons = false;
  905. }
  906. this.yAxisRight.master = !yAxisLeftUsed;
  907. this.yAxisRight.masterAxis = this.yAxisLeft;
  908. if (this.yAxisRight.master == false) {
  909. if (yAxisRightUsed == true) {
  910. this.yAxisLeft.lineOffset = this.yAxisRight.width;
  911. }
  912. else {
  913. this.yAxisLeft.lineOffset = 0;
  914. }
  915. resized = this.yAxisLeft.redraw() || resized;
  916. resized = this.yAxisRight.redraw() || resized;
  917. }
  918. else {
  919. resized = this.yAxisRight.redraw() || resized;
  920. }
  921. // clean the accumulated lists
  922. var tempGroups = ['__barStackLeft', '__barStackRight', '__lineStackLeft', '__lineStackRight'];
  923. for (var i = 0; i < tempGroups.length; i++) {
  924. if (groupIds.indexOf(tempGroups[i]) != -1) {
  925. groupIds.splice(groupIds.indexOf(tempGroups[i]), 1);
  926. }
  927. }
  928. return resized;
  929. };
  930. /**
  931. * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function
  932. *
  933. * @param {boolean} axisUsed
  934. * @returns {boolean}
  935. * @private
  936. * @param axis
  937. */
  938. LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) {
  939. var changed = false;
  940. if (axisUsed == false) {
  941. if (axis.dom.frame.parentNode && axis.hidden == false) {
  942. axis.hide();
  943. changed = true;
  944. }
  945. }
  946. else {
  947. if (!axis.dom.frame.parentNode && axis.hidden == true) {
  948. axis.show();
  949. changed = true;
  950. }
  951. }
  952. return changed;
  953. };
  954. /**
  955. * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the
  956. * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for
  957. * the yAxis.
  958. *
  959. * @param datapoints
  960. * @returns {Array}
  961. * @private
  962. */
  963. LineGraph.prototype._convertXcoordinates = function (datapoints) {
  964. var toScreen = this.body.util.toScreen;
  965. for (var i = 0; i < datapoints.length; i++) {
  966. datapoints[i].screen_x = toScreen(datapoints[i].x) + this.props.width;
  967. datapoints[i].screen_y = datapoints[i].y; //starting point for range calculations
  968. if (datapoints[i].end != undefined) {
  969. datapoints[i].screen_end = toScreen(datapoints[i].end) + this.props.width;
  970. }
  971. else {
  972. datapoints[i].screen_end = undefined;
  973. }
  974. }
  975. };
  976. /**
  977. * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the
  978. * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for
  979. * the yAxis.
  980. *
  981. * @param datapoints
  982. * @param group
  983. * @returns {Array}
  984. * @private
  985. */
  986. LineGraph.prototype._convertYcoordinates = function (datapoints, group) {
  987. var axis = this.yAxisLeft;
  988. var svgHeight = Number(this.svg.style.height.replace('px', ''));
  989. if (group.options.yAxisOrientation == 'right') {
  990. axis = this.yAxisRight;
  991. }
  992. for (var i = 0; i < datapoints.length; i++) {
  993. datapoints[i].screen_y = Math.round(axis.convertValue(datapoints[i].y));
  994. }
  995. group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0)));
  996. };
  997. module.exports = LineGraph;