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.

1059 lines
34 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();
  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();
  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. * @private
  382. */
  383. LineGraph.prototype._updateAllGroupData = function () {
  384. if (this.itemsData != null) {
  385. var groupsContent = {};
  386. var items = this.itemsData.get();
  387. //pre-Determine array sizes, for more efficient memory claim
  388. var groupCounts = {};
  389. for (var i = 0; i < items.length; i++) {
  390. var item = items[i];
  391. var groupId = item.group;
  392. if (groupId === null || groupId === undefined) {
  393. groupId = UNGROUPED;
  394. }
  395. groupCounts.hasOwnProperty(groupId) ? groupCounts[groupId]++ : groupCounts[groupId] = 1;
  396. }
  397. //Now insert data into the arrays.
  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. if (!groupsContent.hasOwnProperty(groupId)) {
  405. groupsContent[groupId] = new Array(groupCounts[groupId]);
  406. }
  407. //Copy data (because of unmodifiable DataView input.
  408. var extended = util.bridgeObject(item);
  409. extended.x = util.convert(item.x, 'Date');
  410. extended.orginalY = item.y; //real Y
  411. extended.y = Number(item.y);
  412. var index= groupsContent[groupId].length - groupCounts[groupId]--;
  413. groupsContent[groupId][index] = extended;
  414. }
  415. //Make sure all groups are present, to allow removal of old groups
  416. for (var groupId in this.groups){
  417. if (this.groups.hasOwnProperty(groupId)){
  418. if (!groupsContent.hasOwnProperty(groupId)) {
  419. groupsContent[groupId] = new Array(0);
  420. }
  421. }
  422. }
  423. //Update legendas, style and axis
  424. for (var groupId in groupsContent) {
  425. if (groupsContent.hasOwnProperty(groupId)) {
  426. if (groupsContent[groupId].length == 0) {
  427. if (this.groups.hasOwnProperty(groupId)) {
  428. this._removeGroup(groupId);
  429. }
  430. } else {
  431. var group = undefined;
  432. if (this.groupsData != undefined) {
  433. group = this.groupsData.get(groupId);
  434. }
  435. if (group == undefined) {
  436. group = {id: groupId, content: this.options.defaultGroup + groupId};
  437. }
  438. this._updateGroup(group, groupId);
  439. this.groups[groupId].setItems(groupsContent[groupId]);
  440. }
  441. }
  442. }
  443. this.forceGraphUpdate = true;
  444. this.body.emitter.emit("_change",{queue: true});
  445. }
  446. };
  447. /**
  448. * Redraw the component, mandatory function
  449. * @return {boolean} Returns true if the component is resized
  450. */
  451. LineGraph.prototype.redraw = function () {
  452. var resized = false;
  453. // calculate actual size and position
  454. this.props.width = this.dom.frame.offsetWidth;
  455. this.props.height = this.body.domProps.centerContainer.height
  456. - this.body.domProps.border.top
  457. - this.body.domProps.border.bottom;
  458. // check if this component is resized
  459. resized = this._isResized() || resized;
  460. // check whether zoomed (in that case we need to re-stack everything)
  461. var visibleInterval = this.body.range.end - this.body.range.start;
  462. var zoomed = (visibleInterval != this.lastVisibleInterval);
  463. this.lastVisibleInterval = visibleInterval;
  464. // the svg element is three times as big as the width, this allows for fully dragging left and right
  465. // without reloading the graph. the controls for this are bound to events in the constructor
  466. if (resized == true) {
  467. this.svg.style.width = util.option.asSize(3 * this.props.width);
  468. this.svg.style.left = util.option.asSize(-this.props.width);
  469. // if the height of the graph is set as proportional, change the height of the svg
  470. if ((this.options.height + '').indexOf("%") != -1 || this.updateSVGheightOnResize == true) {
  471. this.updateSVGheight = true;
  472. }
  473. }
  474. // update the height of the graph on each redraw of the graph.
  475. if (this.updateSVGheight == true) {
  476. if (this.options.graphHeight != this.props.height + 'px') {
  477. this.options.graphHeight = this.props.height + 'px';
  478. this.svg.style.height = this.props.height + 'px';
  479. }
  480. this.updateSVGheight = false;
  481. }
  482. else {
  483. this.svg.style.height = ('' + this.options.graphHeight).replace('px', '') + 'px';
  484. }
  485. // zoomed is here to ensure that animations are shown correctly.
  486. if (resized == true || zoomed == true || this.abortedGraphUpdate == true || this.forceGraphUpdate == true) {
  487. resized = this._updateGraph() || resized;
  488. this.forceGraphUpdate = false;
  489. }
  490. else {
  491. // move the whole svg while dragging
  492. if (this.lastStart != 0) {
  493. var offset = this.body.range.start - this.lastStart;
  494. var range = this.body.range.end - this.body.range.start;
  495. if (this.props.width != 0) {
  496. var rangePerPixelInv = this.props.width / range;
  497. var xOffset = offset * rangePerPixelInv;
  498. this.svg.style.left = (-this.props.width - xOffset) + 'px';
  499. }
  500. }
  501. }
  502. this.legendLeft.redraw();
  503. this.legendRight.redraw();
  504. return resized;
  505. };
  506. LineGraph.prototype._getSortedGroupIds = function(){
  507. // getting group Ids
  508. var grouplist = [];
  509. for (var groupId in this.groups) {
  510. if (this.groups.hasOwnProperty(groupId)) {
  511. var group = this.groups[groupId];
  512. if (group.visible == true && (this.options.groups.visibility[groupId] === undefined || this.options.groups.visibility[groupId] == true)) {
  513. grouplist.push({id:groupId,zIndex:group.options.zIndex});
  514. }
  515. }
  516. }
  517. util.insertSort(grouplist,function(a,b){
  518. var az = a.zIndex;
  519. var bz = b.zIndex;
  520. if (az === undefined) az=0;
  521. if (bz === undefined) bz=0;
  522. return az==bz? 0: (az<bz ? -1: 1);
  523. });
  524. var groupIds = new Array(grouplist.length);
  525. for (var i=0; i< grouplist.length; i++){
  526. groupIds[i] = grouplist[i].id;
  527. }
  528. return groupIds;
  529. }
  530. /**
  531. * Update and redraw the graph.
  532. *
  533. */
  534. LineGraph.prototype._updateGraph = function () {
  535. // reset the svg elements
  536. DOMutil.prepareElements(this.svgElements);
  537. if (this.props.width != 0 && this.itemsData != null) {
  538. var group, i;
  539. var groupRanges = {};
  540. var changeCalled = false;
  541. // this is the range of the SVG canvas
  542. var minDate = this.body.util.toGlobalTime(-this.body.domProps.root.width);
  543. var maxDate = this.body.util.toGlobalTime(2 * this.body.domProps.root.width);
  544. // getting group Ids
  545. var groupIds = this._getSortedGroupIds();
  546. if (groupIds.length > 0) {
  547. var groupsData = {};
  548. // fill groups data, this only loads the data we require based on the timewindow
  549. this._getRelevantData(groupIds, groupsData, minDate, maxDate);
  550. // apply sampling, if disabled, it will pass through this function.
  551. this._applySampling(groupIds, groupsData);
  552. // we transform the X coordinates to detect collisions
  553. for (i = 0; i < groupIds.length; i++) {
  554. this._convertXcoordinates(groupsData[groupIds[i]]);
  555. }
  556. // now all needed data has been collected we start the processing.
  557. this._getYRanges(groupIds, groupsData, groupRanges);
  558. // update the Y axis first, we use this data to draw at the correct Y points
  559. changeCalled = this._updateYAxis(groupIds, groupRanges);
  560. // at changeCalled, abort this update cycle as the graph needs another update with new Width input from the Redraw container.
  561. // Cleanup SVG elements on abort.
  562. if (changeCalled == true) {
  563. DOMutil.cleanupElements(this.svgElements);
  564. this.abortedGraphUpdate = true;
  565. return true;
  566. }
  567. this.abortedGraphUpdate = false;
  568. // With the yAxis scaled correctly, use this to get the Y values of the points.
  569. var below = undefined;
  570. for (i = 0; i < groupIds.length; i++) {
  571. group = this.groups[groupIds[i]];
  572. if (this.options.stack === true && this.options.style === 'line') {
  573. if (group.options.excludeFromStacking == undefined || !group.options.excludeFromStacking) {
  574. if (below != undefined) {
  575. this._stack(groupsData[group.id], groupsData[below.id]);
  576. if (group.options.shaded.enabled == true && group.options.shaded.orientation !== "group"){
  577. if (group.options.shaded.orientation == "top" && below.options.shaded.orientation !== "group"){
  578. below.options.shaded.orientation="group";
  579. below.options.shaded.groupId=group.id;
  580. } else {
  581. group.options.shaded.orientation="group";
  582. group.options.shaded.groupId=below.id;
  583. }
  584. }
  585. }
  586. below = group;
  587. }
  588. }
  589. this._convertYcoordinates(groupsData[groupIds[i]], group);
  590. }
  591. //Precalculate paths and draw shading if appropriate. This will make sure the shading is always behind any lines.
  592. var paths = {};
  593. for (i = 0; i < groupIds.length; i++) {
  594. group = this.groups[groupIds[i]];
  595. if (group.options.style === 'line' && group.options.shaded.enabled == true) {
  596. var dataset = groupsData[groupIds[i]];
  597. if (dataset == null || dataset.length == 0) {
  598. continue;
  599. }
  600. if (!paths.hasOwnProperty(groupIds[i])) {
  601. paths[groupIds[i]] = Lines.calcPath(dataset, group);
  602. }
  603. if (group.options.shaded.orientation === "group") {
  604. var subGroupId = group.options.shaded.groupId;
  605. if (groupIds.indexOf(subGroupId) === -1) {
  606. console.log(group.id + ": Unknown shading group target given:" + subGroupId);
  607. continue;
  608. }
  609. if (!paths.hasOwnProperty(subGroupId)) {
  610. paths[subGroupId] = Lines.calcPath(groupsData[subGroupId], this.groups[subGroupId]);
  611. }
  612. Lines.drawShading(paths[groupIds[i]], group, paths[subGroupId], this.framework);
  613. }
  614. else {
  615. Lines.drawShading(paths[groupIds[i]], group, undefined, this.framework);
  616. }
  617. }
  618. }
  619. // draw the groups, calculating paths if still necessary.
  620. Bars.draw(groupIds, groupsData, this.framework);
  621. for (i = 0; i < groupIds.length; i++) {
  622. group = this.groups[groupIds[i]];
  623. if (groupsData[groupIds[i]].length > 0) {
  624. switch (group.options.style) {
  625. case "line":
  626. if (!paths.hasOwnProperty(groupIds[i])) {
  627. paths[groupIds[i]] = Lines.calcPath(groupsData[groupIds[i]], group);
  628. }
  629. Lines.draw(paths[groupIds[i]], group, this.framework);
  630. //explicit no break;
  631. case "point":
  632. //explicit no break;
  633. case "points":
  634. if (group.options.style == "point" || group.options.style == "points" || group.options.drawPoints.enabled == true) {
  635. Points.draw(groupsData[groupIds[i]], group, this.framework);
  636. }
  637. break;
  638. case "bar":
  639. // bar needs to be drawn enmasse
  640. //explicit no break
  641. default:
  642. //do nothing...
  643. }
  644. }
  645. }
  646. }
  647. }
  648. // cleanup unused svg elements
  649. DOMutil.cleanupElements(this.svgElements);
  650. return false;
  651. };
  652. LineGraph.prototype._stack = function (data, subData) {
  653. var index, dx, dy, subPrevPoint, subNextPoint;
  654. index = 0;
  655. // for each data point we look for a matching on in the set below
  656. for (var j = 0; j < data.length; j++) {
  657. subPrevPoint = undefined;
  658. subNextPoint = undefined;
  659. // we look for time matches or a before-after point
  660. for (var k = index; k < subData.length; k++) {
  661. // if times match exactly
  662. if (subData[k].x === data[j].x) {
  663. subPrevPoint = subData[k];
  664. subNextPoint = subData[k];
  665. index = k;
  666. break;
  667. }
  668. else if (subData[k].x > data[j].x) { // overshoot
  669. subNextPoint = subData[k];
  670. if (k == 0) {
  671. subPrevPoint = subNextPoint;
  672. }
  673. else {
  674. subPrevPoint = subData[k - 1];
  675. }
  676. index = k;
  677. break;
  678. }
  679. }
  680. // in case the last data point has been used, we assume it stays like this.
  681. if (subNextPoint === undefined) {
  682. subPrevPoint = subData[subData.length - 1];
  683. subNextPoint = subData[subData.length - 1];
  684. }
  685. // linear interpolation
  686. dx = subNextPoint.x - subPrevPoint.x;
  687. dy = subNextPoint.y - subPrevPoint.y;
  688. if (dx == 0) {
  689. data[j].y = data[j].orginalY + subNextPoint.y;
  690. }
  691. else {
  692. data[j].y = data[j].orginalY + (dy / dx) * (data[j].x - subPrevPoint.x) + subPrevPoint.y; // ax + b where b is data[j].y
  693. }
  694. }
  695. }
  696. /**
  697. * first select and preprocess the data from the datasets.
  698. * the groups have their preselection of data, we now loop over this data to see
  699. * what data we need to draw. Sorted data is much faster.
  700. * more optimization is possible by doing the sampling before and using the binary search
  701. * to find the end date to determine the increment.
  702. *
  703. * @param {array} groupIds
  704. * @param {object} groupsData
  705. * @param {date} minDate
  706. * @param {date} maxDate
  707. * @private
  708. */
  709. LineGraph.prototype._getRelevantData = function (groupIds, groupsData, minDate, maxDate) {
  710. var group, i, j, item;
  711. if (groupIds.length > 0) {
  712. for (i = 0; i < groupIds.length; i++) {
  713. group = this.groups[groupIds[i]];
  714. var itemsData = group.getItems();
  715. // optimization for sorted data
  716. if (group.options.sort == true) {
  717. var dateComparator = function (a, b) {
  718. return a.getTime() == b.getTime() ? 0 : a < b ? -1 : 1
  719. };
  720. var first = Math.max(0, util.binarySearchValue(itemsData, minDate, 'x', 'before', dateComparator));
  721. var last = Math.min(itemsData.length, util.binarySearchValue(itemsData, maxDate, 'x', 'after', dateComparator) + 1);
  722. if (last <= 0) {
  723. last = itemsData.length;
  724. }
  725. var dataContainer = new Array(last-first);
  726. for (j = first; j < last; j++) {
  727. item = group.itemsData[j];
  728. dataContainer[j-first] = item;
  729. }
  730. groupsData[groupIds[i]] = dataContainer;
  731. }
  732. else {
  733. // If unsorted data, all data is relevant, just returning entire structure
  734. groupsData[groupIds[i]] = group.itemsData;
  735. }
  736. }
  737. }
  738. };
  739. /**
  740. *
  741. * @param groupIds
  742. * @param groupsData
  743. * @private
  744. */
  745. LineGraph.prototype._applySampling = function (groupIds, groupsData) {
  746. var group;
  747. if (groupIds.length > 0) {
  748. for (var i = 0; i < groupIds.length; i++) {
  749. group = this.groups[groupIds[i]];
  750. if (group.options.sampling == true) {
  751. var dataContainer = groupsData[groupIds[i]];
  752. if (dataContainer.length > 0) {
  753. var increment = 1;
  754. var amountOfPoints = dataContainer.length;
  755. // the global screen is used because changing the width of the yAxis may affect the increment, resulting in an endless loop
  756. // of width changing of the yAxis.
  757. var xDistance = this.body.util.toGlobalScreen(dataContainer[dataContainer.length - 1].x) - this.body.util.toGlobalScreen(dataContainer[0].x);
  758. var pointsPerPixel = amountOfPoints / xDistance;
  759. increment = Math.min(Math.ceil(0.2 * amountOfPoints), Math.max(1, Math.round(pointsPerPixel)));
  760. var sampledData = new Array(amountOfPoints);
  761. for (var j = 0; j < amountOfPoints; j += increment) {
  762. var idx = Math.round(j/increment);
  763. sampledData[idx]=dataContainer[j];
  764. }
  765. groupsData[groupIds[i]] = sampledData.splice(0,Math.round(amountOfPoints/increment));
  766. }
  767. }
  768. }
  769. }
  770. };
  771. /**
  772. *
  773. *
  774. * @param {array} groupIds
  775. * @param {object} groupsData
  776. * @param {object} groupRanges | this is being filled here
  777. * @private
  778. */
  779. LineGraph.prototype._getYRanges = function (groupIds, groupsData, groupRanges) {
  780. var groupData, group, i;
  781. var combinedDataLeft = [];
  782. var combinedDataRight = [];
  783. var options;
  784. if (groupIds.length > 0) {
  785. for (i = 0; i < groupIds.length; i++) {
  786. groupData = groupsData[groupIds[i]];
  787. options = this.groups[groupIds[i]].options;
  788. if (groupData.length > 0) {
  789. group = this.groups[groupIds[i]];
  790. // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.
  791. if (options.stack === true && options.style === 'bar') {
  792. if (options.yAxisOrientation === 'left') {
  793. combinedDataLeft = combinedDataLeft.concat(group.getItems());
  794. }
  795. else {
  796. combinedDataRight = combinedDataRight.concat(group.getItems());
  797. }
  798. }
  799. else {
  800. groupRanges[groupIds[i]] = group.getYRange(groupData, groupIds[i]);
  801. }
  802. }
  803. }
  804. // if bar graphs are stacked, their range need to be handled differently and accumulated over all groups.
  805. Bars.getStackedYRange(combinedDataLeft, groupRanges, groupIds, '__barStackLeft', 'left');
  806. Bars.getStackedYRange(combinedDataRight, groupRanges, groupIds, '__barStackRight', 'right');
  807. }
  808. };
  809. /**
  810. * this sets the Y ranges for the Y axis. It also determines which of the axis should be shown or hidden.
  811. * @param {Array} groupIds
  812. * @param {Object} groupRanges
  813. * @private
  814. */
  815. LineGraph.prototype._updateYAxis = function (groupIds, groupRanges) {
  816. var resized = false;
  817. var yAxisLeftUsed = false;
  818. var yAxisRightUsed = false;
  819. var minLeft = 1e9, minRight = 1e9, maxLeft = -1e9, maxRight = -1e9, minVal, maxVal;
  820. // if groups are present
  821. if (groupIds.length > 0) {
  822. // 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.
  823. for (var i = 0; i < groupIds.length; i++) {
  824. var group = this.groups[groupIds[i]];
  825. if (group && group.options.yAxisOrientation != 'right') {
  826. yAxisLeftUsed = true;
  827. minLeft = 1e9;
  828. maxLeft = -1e9;
  829. }
  830. else if (group && group.options.yAxisOrientation) {
  831. yAxisRightUsed = true;
  832. minRight = 1e9;
  833. maxRight = -1e9;
  834. }
  835. }
  836. // if there are items:
  837. for (var i = 0; i < groupIds.length; i++) {
  838. if (groupRanges.hasOwnProperty(groupIds[i])) {
  839. if (groupRanges[groupIds[i]].ignore !== true) {
  840. minVal = groupRanges[groupIds[i]].min;
  841. maxVal = groupRanges[groupIds[i]].max;
  842. if (groupRanges[groupIds[i]].yAxisOrientation != 'right') {
  843. yAxisLeftUsed = true;
  844. minLeft = minLeft > minVal ? minVal : minLeft;
  845. maxLeft = maxLeft < maxVal ? maxVal : maxLeft;
  846. }
  847. else {
  848. yAxisRightUsed = true;
  849. minRight = minRight > minVal ? minVal : minRight;
  850. maxRight = maxRight < maxVal ? maxVal : maxRight;
  851. }
  852. }
  853. }
  854. }
  855. if (yAxisLeftUsed == true) {
  856. this.yAxisLeft.setRange(minLeft, maxLeft);
  857. }
  858. if (yAxisRightUsed == true) {
  859. this.yAxisRight.setRange(minRight, maxRight);
  860. }
  861. }
  862. resized = this._toggleAxisVisiblity(yAxisLeftUsed, this.yAxisLeft) || resized;
  863. resized = this._toggleAxisVisiblity(yAxisRightUsed, this.yAxisRight) || resized;
  864. if (yAxisRightUsed == true && yAxisLeftUsed == true) {
  865. this.yAxisLeft.drawIcons = true;
  866. this.yAxisRight.drawIcons = true;
  867. }
  868. else {
  869. this.yAxisLeft.drawIcons = false;
  870. this.yAxisRight.drawIcons = false;
  871. }
  872. this.yAxisRight.master = !yAxisLeftUsed;
  873. this.yAxisRight.masterAxis = this.yAxisLeft;
  874. if (this.yAxisRight.master == false) {
  875. if (yAxisRightUsed == true) {
  876. this.yAxisLeft.lineOffset = this.yAxisRight.width;
  877. }
  878. else {
  879. this.yAxisLeft.lineOffset = 0;
  880. }
  881. resized = this.yAxisLeft.redraw() || resized;
  882. resized = this.yAxisRight.redraw() || resized;
  883. }
  884. else {
  885. resized = this.yAxisRight.redraw() || resized;
  886. }
  887. // clean the accumulated lists
  888. var tempGroups = ['__barStackLeft', '__barStackRight', '__lineStackLeft', '__lineStackRight'];
  889. for (var i = 0; i < tempGroups.length; i++) {
  890. if (groupIds.indexOf(tempGroups[i]) != -1) {
  891. groupIds.splice(groupIds.indexOf(tempGroups[i]), 1);
  892. }
  893. }
  894. return resized;
  895. };
  896. /**
  897. * This shows or hides the Y axis if needed. If there is a change, the changed event is emitted by the updateYAxis function
  898. *
  899. * @param {boolean} axisUsed
  900. * @returns {boolean}
  901. * @private
  902. * @param axis
  903. */
  904. LineGraph.prototype._toggleAxisVisiblity = function (axisUsed, axis) {
  905. var changed = false;
  906. if (axisUsed == false) {
  907. if (axis.dom.frame.parentNode && axis.hidden == false) {
  908. axis.hide();
  909. changed = true;
  910. }
  911. }
  912. else {
  913. if (!axis.dom.frame.parentNode && axis.hidden == true) {
  914. axis.show();
  915. changed = true;
  916. }
  917. }
  918. return changed;
  919. };
  920. /**
  921. * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the
  922. * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for
  923. * the yAxis.
  924. *
  925. * @param datapoints
  926. * @returns {Array}
  927. * @private
  928. */
  929. LineGraph.prototype._convertXcoordinates = function (datapoints) {
  930. var toScreen = this.body.util.toScreen;
  931. for (var i = 0; i < datapoints.length; i++) {
  932. datapoints[i].screen_x = toScreen(datapoints[i].x) + this.props.width;
  933. datapoints[i].screen_y = datapoints[i].y; //starting point for range calculations
  934. }
  935. };
  936. /**
  937. * This uses the DataAxis object to generate the correct X coordinate on the SVG window. It uses the
  938. * util function toScreen to get the x coordinate from the timestamp. It also pre-filters the data and get the minMax ranges for
  939. * the yAxis.
  940. *
  941. * @param datapoints
  942. * @param group
  943. * @returns {Array}
  944. * @private
  945. */
  946. LineGraph.prototype._convertYcoordinates = function (datapoints, group) {
  947. var axis = this.yAxisLeft;
  948. var svgHeight = Number(this.svg.style.height.replace('px', ''));
  949. if (group.options.yAxisOrientation == 'right') {
  950. axis = this.yAxisRight;
  951. }
  952. for (var i = 0; i < datapoints.length; i++) {
  953. datapoints[i].screen_y = Math.round(axis.convertValue(datapoints[i].y));
  954. }
  955. group.setZeroPosition(Math.min(svgHeight, axis.convertValue(0)));
  956. };
  957. module.exports = LineGraph;