|
@ -4,8 +4,8 @@ |
|
|
* |
|
|
* |
|
|
* A dynamic, browser-based visualization library. |
|
|
* A dynamic, browser-based visualization library. |
|
|
* |
|
|
* |
|
|
* @version 1.1.0 |
|
|
|
|
|
* @date 2014-06-16 |
|
|
|
|
|
|
|
|
* @version @@version |
|
|
|
|
|
* @date @@date |
|
|
* |
|
|
* |
|
|
* @license |
|
|
* @license |
|
|
* Copyright (C) 2011-2014 Almende B.V, http://almende.com
|
|
|
* Copyright (C) 2011-2014 Almende B.V, http://almende.com
|
|
@ -2096,13 +2096,12 @@ DataSet.prototype.min = function (field) { |
|
|
DataSet.prototype.distinct = function (field) { |
|
|
DataSet.prototype.distinct = function (field) { |
|
|
var data = this.data, |
|
|
var data = this.data, |
|
|
values = [], |
|
|
values = [], |
|
|
value, |
|
|
|
|
|
count = 0; |
|
|
count = 0; |
|
|
|
|
|
|
|
|
for (var prop in data) { |
|
|
for (var prop in data) { |
|
|
if (data.hasOwnProperty(prop)) { |
|
|
if (data.hasOwnProperty(prop)) { |
|
|
var item = data[prop]; |
|
|
var item = data[prop]; |
|
|
value = util.convert(item[field], this.convert[field]); |
|
|
|
|
|
|
|
|
var value = util.convert(item[field], this.convert[field]); |
|
|
var exists = false; |
|
|
var exists = false; |
|
|
for (var i = 0; i < count; i++) { |
|
|
for (var i = 0; i < count; i++) { |
|
|
if (values[i] == value) { |
|
|
if (values[i] == value) { |
|
@ -2603,13 +2602,19 @@ function DataAxis (body, options) { |
|
|
this.options = util.extend({}, this.defaultOptions); |
|
|
this.options = util.extend({}, this.defaultOptions); |
|
|
this.conversionFactor = 1; |
|
|
this.conversionFactor = 1; |
|
|
|
|
|
|
|
|
|
|
|
this.setOptions(options); |
|
|
this.width = Number(this.options.width.replace("px","")); |
|
|
this.width = Number(this.options.width.replace("px","")); |
|
|
|
|
|
this.height = Number(this.options.height.replace("px","")); |
|
|
|
|
|
|
|
|
// create the HTML DOM
|
|
|
// create the HTML DOM
|
|
|
this._create(); |
|
|
this._create(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
DataAxis.prototype = new Component(); |
|
|
DataAxis.prototype = new Component(); |
|
|
DataAxis.prototype.setOptions = Component.prototype.setOptions; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//DataAxis.prototype.setOptions = function(options) {
|
|
|
|
|
|
//
|
|
|
|
|
|
//}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
@ -2996,9 +3001,22 @@ function Linegraph(body, options) { |
|
|
this.body = body; |
|
|
this.body = body; |
|
|
|
|
|
|
|
|
this.defaultOptions = { |
|
|
this.defaultOptions = { |
|
|
|
|
|
shaded: { |
|
|
|
|
|
enabled: true, |
|
|
|
|
|
orientation: 'top' // top, bottom
|
|
|
|
|
|
}, |
|
|
|
|
|
barGraph: { |
|
|
|
|
|
enabled: true, |
|
|
|
|
|
binSize: 'auto' |
|
|
|
|
|
}, |
|
|
|
|
|
drawPoints: { |
|
|
|
|
|
enabled: true, |
|
|
|
|
|
size: 6, |
|
|
|
|
|
style: 'square' // square, circle
|
|
|
|
|
|
}, |
|
|
catmullRom: { |
|
|
catmullRom: { |
|
|
enabled: true, |
|
|
enabled: true, |
|
|
parametrization: 'centripetal', // uniform (0,0), chordal (1.0), centripetal (0.5)
|
|
|
|
|
|
|
|
|
parametrization: 'centripetal', // uniform (alpha = 0.0), chordal (alpha = 1.0), centripetal (alpha = 0.5)
|
|
|
alpha: 0.5 |
|
|
alpha: 0.5 |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
@ -3030,8 +3048,9 @@ function Linegraph(body, options) { |
|
|
this.selection = []; // list with the ids of all selected nodes
|
|
|
this.selection = []; // list with the ids of all selected nodes
|
|
|
this.lastStart = this.body.range.start; |
|
|
this.lastStart = this.body.range.start; |
|
|
this.touchParams = {}; // stores properties while dragging
|
|
|
this.touchParams = {}; // stores properties while dragging
|
|
|
this.lines = []; |
|
|
|
|
|
this.redundantLines = []; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.svgElements = {}; |
|
|
|
|
|
this.svgLegendElements = {}; |
|
|
// create the HTML DOM
|
|
|
// create the HTML DOM
|
|
|
|
|
|
|
|
|
this._create(); |
|
|
this._create(); |
|
@ -3069,31 +3088,28 @@ Linegraph.prototype._create = function(){ |
|
|
frame['linegraph'] = this; |
|
|
frame['linegraph'] = this; |
|
|
this.dom.frame = frame; |
|
|
this.dom.frame = frame; |
|
|
|
|
|
|
|
|
// create background panel
|
|
|
|
|
|
var background = document.createElement('div'); |
|
|
|
|
|
background.className = 'background'; |
|
|
|
|
|
frame.appendChild(background); |
|
|
|
|
|
this.dom.background = background; |
|
|
|
|
|
|
|
|
|
|
|
// create foreground panel
|
|
|
|
|
|
var foreground = document.createElement('div'); |
|
|
|
|
|
foreground.className = 'foreground'; |
|
|
|
|
|
frame.appendChild(foreground); |
|
|
|
|
|
this.dom.foreground = foreground; |
|
|
|
|
|
|
|
|
|
|
|
// create svg element for graph drawing.
|
|
|
// create svg element for graph drawing.
|
|
|
this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); |
|
|
this.svg = document.createElementNS('http://www.w3.org/2000/svg',"svg"); |
|
|
this.svg.style.position = "relative" |
|
|
|
|
|
|
|
|
this.svg.style.position = "relative"; |
|
|
this.svg.style.height = "300px"; |
|
|
this.svg.style.height = "300px"; |
|
|
this.svg.style.display = "block"; |
|
|
this.svg.style.display = "block"; |
|
|
|
|
|
|
|
|
frame.appendChild(this.svg); |
|
|
frame.appendChild(this.svg); |
|
|
|
|
|
|
|
|
|
|
|
this.svgLegend = document.createElementNS('http://www.w3.org/2000/svg',"svg"); |
|
|
|
|
|
this.svgLegend.style.position = "absolute"; |
|
|
|
|
|
this.svgLegend.style.top = "10px"; |
|
|
|
|
|
this.svgLegend.style.height = "300px"; |
|
|
|
|
|
this.svgLegend.style.width = "300px"; |
|
|
|
|
|
this.svgLegend.style.display = "block"; |
|
|
|
|
|
|
|
|
|
|
|
frame.appendChild(this.svgLegend); |
|
|
|
|
|
|
|
|
// panel with time axis
|
|
|
// panel with time axis
|
|
|
this.yAxis = new DataAxis(this.body, { |
|
|
this.yAxis = new DataAxis(this.body, { |
|
|
orientation: 'left', |
|
|
orientation: 'left', |
|
|
showMinorLabels: true, |
|
|
showMinorLabels: true, |
|
|
showMajorLabels: true, |
|
|
showMajorLabels: true, |
|
|
width: '90px', |
|
|
|
|
|
|
|
|
width: '50px', |
|
|
height: this.svg.style.height |
|
|
height: this.svg.style.height |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
@ -3103,22 +3119,20 @@ Linegraph.prototype._create = function(){ |
|
|
|
|
|
|
|
|
Linegraph.prototype.setOptions = function(options) { |
|
|
Linegraph.prototype.setOptions = function(options) { |
|
|
if (options) { |
|
|
if (options) { |
|
|
var fields = ['catmullRom']; |
|
|
|
|
|
|
|
|
var fields = ['barGraph','catmullRom','shaded','drawPoints']; |
|
|
util.selectiveExtend(fields, this.options, options); |
|
|
util.selectiveExtend(fields, this.options, options); |
|
|
console.log(this.options); |
|
|
|
|
|
if (options.catmullRom) { |
|
|
if (options.catmullRom) { |
|
|
if (typeof options.catmullRom == 'boolean') { |
|
|
if (typeof options.catmullRom == 'boolean') { |
|
|
this.options.catmullRom.enabled = options.catmullRom; |
|
|
this.options.catmullRom.enabled = options.catmullRom; |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
if (options.catmullRom.enabled) { |
|
|
|
|
|
this.options.catmullRom.enabled = options.catmullRom.enabled; |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
this.options.catmullRom.enabled = true; |
|
|
|
|
|
|
|
|
this.options.catmullRom.enabled = true; |
|
|
|
|
|
for (var prop in options.catmullRom) { |
|
|
|
|
|
if (options.catmullRom.hasOwnProperty(prop)) { |
|
|
|
|
|
this.options.catmullRom[prop] = options.catmullRom[prop]; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
if (options.catmullRom.parametrization) { |
|
|
if (options.catmullRom.parametrization) { |
|
|
this.options.catmullRom.parametrization = options.catmullRom.parametrization; |
|
|
|
|
|
if (options.catmullRom.parametrization == 'uniform') { |
|
|
if (options.catmullRom.parametrization == 'uniform') { |
|
|
this.options.catmullRom.alpha = 0; |
|
|
this.options.catmullRom.alpha = 0; |
|
|
} |
|
|
} |
|
@ -3126,12 +3140,37 @@ Linegraph.prototype.setOptions = function(options) { |
|
|
this.options.catmullRom.alpha = 1.0; |
|
|
this.options.catmullRom.alpha = 1.0; |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
this.options.catmullRom.parametrization = 'centripetal' |
|
|
|
|
|
|
|
|
this.options.catmullRom.parametrization = 'centripetal'; |
|
|
this.options.catmullRom.alpha = 0.5; |
|
|
this.options.catmullRom.alpha = 0.5; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
if (options.catmullRom.alpha) { |
|
|
|
|
|
this.options.catmullRom.alpha = options.catmullRom.alpha; |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (options.drawPoints) { |
|
|
|
|
|
if (typeof options.catmullRom == 'boolean') { |
|
|
|
|
|
this.options.drawPoints.enabled = options.drawPoints; |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
this.options.drawPoints.enabled = true; |
|
|
|
|
|
for (prop in options.drawPoints) { |
|
|
|
|
|
if (options.drawPoints.hasOwnProperty(prop)) { |
|
|
|
|
|
this.options.drawPoints[prop] = options.drawPoints[prop]; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (options.shaded) { |
|
|
|
|
|
if (typeof options.shaded == 'boolean') { |
|
|
|
|
|
this.options.shaded.enabled = options.shaded; |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
this.options.shaded.enabled = true; |
|
|
|
|
|
for (prop in options.shaded) { |
|
|
|
|
|
if (options.shaded.hasOwnProperty(prop)) { |
|
|
|
|
|
this.options.shaded[prop] = options.shaded.drawPoints[prop]; |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -3220,7 +3259,10 @@ Linegraph.prototype.setItems = function(items) { |
|
|
* @param {Number[]} ids |
|
|
* @param {Number[]} ids |
|
|
* @protected |
|
|
* @protected |
|
|
*/ |
|
|
*/ |
|
|
Linegraph.prototype._onUpdate = function(ids) {}; |
|
|
|
|
|
|
|
|
Linegraph.prototype._onUpdate = function(ids) { |
|
|
|
|
|
this.updateGraph(); |
|
|
|
|
|
this.redraw(); |
|
|
|
|
|
}; |
|
|
Linegraph.prototype._onAdd = Linegraph.prototype._onUpdate; |
|
|
Linegraph.prototype._onAdd = Linegraph.prototype._onUpdate; |
|
|
Linegraph.prototype._onRemove = function(ids) {}; |
|
|
Linegraph.prototype._onRemove = function(ids) {}; |
|
|
|
|
|
|
|
@ -3244,7 +3286,7 @@ Linegraph.prototype.redraw = function() { |
|
|
|
|
|
|
|
|
// calculate actual size and position
|
|
|
// calculate actual size and position
|
|
|
this.width = this.dom.frame.offsetWidth; |
|
|
this.width = this.dom.frame.offsetWidth; |
|
|
|
|
|
|
|
|
|
|
|
this.svgLegend.style.left = (this.width - this.svgLegend.offsetWidth - 10) + "px"; |
|
|
// check if this component is resized
|
|
|
// check if this component is resized
|
|
|
resized = this._isResized() || resized; |
|
|
resized = this._isResized() || resized; |
|
|
if (resized) { |
|
|
if (resized) { |
|
@ -3257,85 +3299,203 @@ Linegraph.prototype.redraw = function() { |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.updateGraph = function() { |
|
|
|
|
|
// reset the lines
|
|
|
|
|
|
this.redundantLines = this.lines; |
|
|
|
|
|
this.lines = []; |
|
|
|
|
|
|
|
|
Linegraph.prototype.updateGraph = function () { |
|
|
|
|
|
// reset the svg elements
|
|
|
|
|
|
this._prepareSVGElements(this.svgElements); |
|
|
|
|
|
|
|
|
if (this.width != 0 && this.itemsData != null) { |
|
|
if (this.width != 0 && this.itemsData != null) { |
|
|
// get the range for the y Axis and draw it
|
|
|
// get the range for the y Axis and draw it
|
|
|
var yRange = {start:this.itemsData.min('y').y,end:this.itemsData.max('y').y}; |
|
|
|
|
|
|
|
|
var yRange = {start: this.itemsData.min('y').y, end: this.itemsData.max('y').y}; |
|
|
this.yAxis.setRange(yRange); |
|
|
this.yAxis.setRange(yRange); |
|
|
this.yAxis.redraw(); |
|
|
this.yAxis.redraw(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(this.itemsData); |
|
|
|
|
|
// look at different lines
|
|
|
// look at different lines
|
|
|
var classes = this.itemsData.distinct('className'); |
|
|
var classes = this.itemsData.distinct('className'); |
|
|
var datapoints; |
|
|
|
|
|
|
|
|
|
|
|
if (classes.length == 0) { |
|
|
|
|
|
datapoints = this.itemsData.get(); |
|
|
|
|
|
this.drawGraph(datapoints, 'default'); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
|
|
|
if (classes.length > 0) { |
|
|
for (var i = 0; i < classes.length; i++) { |
|
|
for (var i = 0; i < classes.length; i++) { |
|
|
datapoints = this.itemsData.get({filter: function(item) {return item.className == classes[i];}}); |
|
|
|
|
|
this.drawGraph(datapoints, classes[i]); |
|
|
|
|
|
|
|
|
this.drawGraph(classes[i], classes.length); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
this.drawGraph('group0', 1); |
|
|
|
|
|
} |
|
|
|
|
|
this.drawLegend(classes); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// cleanup the redundant lines;
|
|
|
|
|
|
for (var i = 0; i < this.redundantLines.length; i++) { |
|
|
|
|
|
this.redundantLines[i].parentNode.removeChild(this.redundantLines[i]); |
|
|
|
|
|
|
|
|
// cleanup unused svg elements
|
|
|
|
|
|
this._cleanupSVGElements(this.svgElements); |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawGraph = function (className, amountOfGraphs) { |
|
|
|
|
|
var datapoints = this.itemsData.get({filter: function (item) { |
|
|
|
|
|
return item.className == className || !item.className; |
|
|
|
|
|
}}); |
|
|
|
|
|
|
|
|
|
|
|
if (this.options.style == 'bar') { |
|
|
|
|
|
this.drawBarGraph(datapoints, className, amountOfGraphs); |
|
|
} |
|
|
} |
|
|
this.redundantLines = []; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
else { |
|
|
|
|
|
this.drawLineGraph(datapoints, className); |
|
|
|
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
Linegraph.prototype.drawGraph = function(datapoints, className) { |
|
|
|
|
|
|
|
|
Linegraph.prototype.drawBarGraph = function (datapoints, className, amountOfGraphs) { |
|
|
if (datapoints != null) { |
|
|
if (datapoints != null) { |
|
|
if (datapoints.length > 0) { |
|
|
if (datapoints.length > 0) { |
|
|
var dataset = this._prepareData(datapoints); |
|
|
var dataset = this._prepareData(datapoints); |
|
|
var path, d; |
|
|
|
|
|
if (this.redundantLines.length != 0) { |
|
|
|
|
|
path = this.redundantLines[this.redundantLines.length-1]; |
|
|
|
|
|
this.redundantLines.pop() |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
path = document.createElementNS('http://www.w3.org/2000/svg',"path"); |
|
|
|
|
|
this.svg.appendChild(path); |
|
|
|
|
|
|
|
|
// draw points
|
|
|
|
|
|
for (var i = 0; i < dataset.length; i++) { |
|
|
|
|
|
|
|
|
|
|
|
this.drawBar(dataset[i].x, dataset[i].y, className); |
|
|
} |
|
|
} |
|
|
path.setAttributeNS(null, "class",className); |
|
|
|
|
|
this.lines.push(path); |
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawBar = function (x, y, className) { |
|
|
|
|
|
var width = 10; |
|
|
|
|
|
rect = this._getSVGElement('rect',this.svgElements, this.svg); |
|
|
|
|
|
|
|
|
|
|
|
rect.setAttributeNS(null, "x", x - 0.5 * width); |
|
|
|
|
|
rect.setAttributeNS(null, "y", y); |
|
|
|
|
|
rect.setAttributeNS(null, "width", width); |
|
|
|
|
|
rect.setAttributeNS(null, "height", this.svg.offsetHeight - y); |
|
|
|
|
|
rect.setAttributeNS(null, "class", className + " point"); |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawLineGraph = function (datapoints, className) { |
|
|
|
|
|
if (datapoints != null) { |
|
|
|
|
|
if (datapoints.length > 0) { |
|
|
|
|
|
var dataset = this._prepareData(datapoints); |
|
|
|
|
|
var path, d; |
|
|
|
|
|
|
|
|
|
|
|
path = this._getSVGElement('path', this.svgElements, this.svg); |
|
|
|
|
|
path.setAttributeNS(null, "class", className); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// construct path from dataset
|
|
|
if (this.options.catmullRom.enabled == true) { |
|
|
if (this.options.catmullRom.enabled == true) { |
|
|
d = this._catmullRom(dataset,this.options.catmullRom.alpha); |
|
|
|
|
|
|
|
|
d = this._catmullRom(dataset); |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
d = this._linear(dataset); |
|
|
d = this._linear(dataset); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
path.setAttributeNS(null, "d",d); |
|
|
|
|
|
|
|
|
// append with points for fill and finalize the path
|
|
|
|
|
|
if (this.options.shaded.enabled == true) { |
|
|
|
|
|
var fillPath = this._getSVGElement('path',this.svgElements, this.svg); |
|
|
|
|
|
if (this.options.shaded.orientation == 'top') { |
|
|
|
|
|
var dFill = "M" + dataset[0].x + "," + 0 + " " + d + "L" + dataset[dataset.length - 1].x + "," + 0; |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
var dFill = "M" + dataset[0].x + "," + this.svg.offsetHeight + " " + d + "L" + dataset[dataset.length - 1].x + "," + this.svg.offsetHeight; |
|
|
|
|
|
} |
|
|
|
|
|
fillPath.setAttributeNS(null, "class", className + " fill"); |
|
|
|
|
|
fillPath.setAttributeNS(null, "d", dFill); |
|
|
|
|
|
} |
|
|
|
|
|
// copy properties to path for drawing.
|
|
|
|
|
|
path.setAttributeNS(null, "d", "M" + d); |
|
|
|
|
|
|
|
|
|
|
|
// draw points
|
|
|
|
|
|
if (this.options.drawPoints.enabled == true) { |
|
|
|
|
|
this.drawPoints(dataset, className, this.svgElements, this.svg); |
|
|
|
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawPoints = function (dataset, className, container, svg) { |
|
|
|
|
|
for (var i = 0; i < dataset.length; i++) { |
|
|
|
|
|
this.drawPoint(dataset[i].x, dataset[i].y, className, container, svg); |
|
|
|
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawPoint = function(x, y, className, container, svg) { |
|
|
|
|
|
var point; |
|
|
|
|
|
if (this.options.drawPoints.style == 'circle') { |
|
|
|
|
|
point = this._getSVGElement('circle',container,svg); |
|
|
|
|
|
point.setAttributeNS(null, "cx", x); |
|
|
|
|
|
point.setAttributeNS(null, "cy", y); |
|
|
|
|
|
point.setAttributeNS(null, "r", 0.5 * this.options.drawPoints.size); |
|
|
|
|
|
point.setAttributeNS(null, "class", className + " point"); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
point = this._getSVGElement('rect',container,svg); |
|
|
|
|
|
point.setAttributeNS(null, "x", x - 0.5*this.options.drawPoints.size); |
|
|
|
|
|
point.setAttributeNS(null, "y", y - 0.5*this.options.drawPoints.size); |
|
|
|
|
|
point.setAttributeNS(null, "width", this.options.drawPoints.size); |
|
|
|
|
|
point.setAttributeNS(null, "height", this.options.drawPoints.size); |
|
|
|
|
|
point.setAttributeNS(null, "class", className + " point"); |
|
|
|
|
|
} |
|
|
|
|
|
return point; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype._getSVGElement = function (elementType, container, svg) { |
|
|
|
|
|
|
|
|
|
|
|
var element; |
|
|
|
|
|
// allocate SVG element, if it doesnt yet exist, create one.
|
|
|
|
|
|
if (container.hasOwnProperty(elementType)) { // this element has been created before
|
|
|
|
|
|
// check if there is an redundant element
|
|
|
|
|
|
if (container[elementType].redundant.length > 0) { |
|
|
|
|
|
element = container[elementType].redundant[0]; |
|
|
|
|
|
container[elementType].redundant.shift() |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
// create a new element and add it to the SVG
|
|
|
|
|
|
element = document.createElementNS('http://www.w3.org/2000/svg', elementType); |
|
|
|
|
|
svg.appendChild(element); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
// create a new element and add it to the SVG, also create a new object in the svgElements to keep track of it.
|
|
|
|
|
|
element = document.createElementNS('http://www.w3.org/2000/svg', elementType); |
|
|
|
|
|
container[elementType] = {used: [], redundant: []}; |
|
|
|
|
|
svg.appendChild(element); |
|
|
|
|
|
} |
|
|
|
|
|
container[elementType].used.push(element); |
|
|
|
|
|
return element; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
Linegraph.prototype._prepareData = function(dataset) { |
|
|
|
|
|
|
|
|
Linegraph.prototype._cleanupSVGElements = function(container) { |
|
|
|
|
|
// cleanup the redundant svgElements;
|
|
|
|
|
|
for (var elementType in container) { |
|
|
|
|
|
if (container.hasOwnProperty(elementType)) { |
|
|
|
|
|
for (var i = 0; i < container[elementType].redundant.length; i++) { |
|
|
|
|
|
container[elementType].redundant[i].parentNode.removeChild(container[elementType].redundant[i]); |
|
|
|
|
|
} |
|
|
|
|
|
container[elementType].redundant = []; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype._prepareSVGElements = function(container) { |
|
|
|
|
|
// cleanup the redundant svgElements;
|
|
|
|
|
|
for (var elementType in container) { |
|
|
|
|
|
if (container.hasOwnProperty(elementType)) { |
|
|
|
|
|
container[elementType].redundant = container[elementType].used; |
|
|
|
|
|
container[elementType].used = []; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype._prepareData = function (dataset) { |
|
|
var extractedData = []; |
|
|
var extractedData = []; |
|
|
|
|
|
var xValue, yValue; |
|
|
|
|
|
|
|
|
for (var i = 0; i < dataset.length; i++) { |
|
|
for (var i = 0; i < dataset.length; i++) { |
|
|
var xValue = this.body.util.toScreen(new Date(dataset[i].x)) + this.width; |
|
|
|
|
|
var yValue = this.yAxis.convertValue(dataset[i].y); |
|
|
|
|
|
extractedData.push({x:xValue, y:yValue}); |
|
|
|
|
|
|
|
|
xValue = this.body.util.toScreen(new Date(dataset[i].x)) + this.width; |
|
|
|
|
|
yValue = this.yAxis.convertValue(dataset[i].y); |
|
|
|
|
|
extractedData.push({x: xValue, y: yValue}); |
|
|
} |
|
|
} |
|
|
// extractedData.sort(function (a,b) {return a.x - b.x;});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// extractedData.sort(function (a,b) {return a.x - b.x;});
|
|
|
return extractedData; |
|
|
return extractedData; |
|
|
} |
|
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
Linegraph.prototype._catmullRomUniform = function(data) { |
|
|
Linegraph.prototype._catmullRomUniform = function(data) { |
|
|
// catmull rom
|
|
|
// catmull rom
|
|
|
var p0, p1, p2, p3, bp1, bp2 |
|
|
|
|
|
|
|
|
var p0, p1, p2, p3, bp1, bp2; |
|
|
var d = "M" + Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; |
|
|
var d = "M" + Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; |
|
|
var normalization = 1/6; |
|
|
var normalization = 1/6; |
|
|
var length = data.length; |
|
|
var length = data.length; |
|
@ -3369,16 +3529,15 @@ Linegraph.prototype._catmullRomUniform = function(data) { |
|
|
|
|
|
|
|
|
return d; |
|
|
return d; |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype._catmullRom = function(data, alpha) { |
|
|
|
|
|
|
|
|
Linegraph.prototype._catmullRom = function(data) { |
|
|
|
|
|
var alpha = this.options.catmullRom.alpha; |
|
|
if (alpha == 0 || alpha === undefined) { |
|
|
if (alpha == 0 || alpha === undefined) { |
|
|
return this._catmullRomUniform(data); |
|
|
return this._catmullRomUniform(data); |
|
|
} |
|
|
} |
|
|
else { |
|
|
else { |
|
|
var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; |
|
|
var p0, p1, p2, p3, bp1, bp2, d1,d2,d3, A, B, N, M; |
|
|
var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; |
|
|
var d3powA, d2powA, d3pow2A, d2pow2A, d1pow2A, d1powA; |
|
|
var d = "M" + Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; |
|
|
|
|
|
|
|
|
var d = "" + Math.round(data[0].x) + "," + Math.round(data[0].y) + " "; |
|
|
var length = data.length; |
|
|
var length = data.length; |
|
|
for (var i = 0; i < length - 1; i++) { |
|
|
for (var i = 0; i < length - 1; i++) { |
|
|
|
|
|
|
|
@ -3440,8 +3599,6 @@ Linegraph.prototype._catmullRom = function(data, alpha) { |
|
|
return d; |
|
|
return d; |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype._linear = function(data) { |
|
|
Linegraph.prototype._linear = function(data) { |
|
|
// linear
|
|
|
// linear
|
|
|
var d = ""; |
|
|
var d = ""; |
|
@ -3454,8 +3611,72 @@ Linegraph.prototype._linear = function(data) { |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
return d; |
|
|
return d; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Linegraph.prototype.drawLegend = function(classes) { |
|
|
|
|
|
this._prepareSVGElements(this.svgLegendElements); |
|
|
|
|
|
var x = 0; |
|
|
|
|
|
var y = 0; |
|
|
|
|
|
var lineLength = 30; |
|
|
|
|
|
var fillHeight = 10; |
|
|
|
|
|
var spacing = 25; |
|
|
|
|
|
var path, fillPath, outline; |
|
|
|
|
|
var legendWidth = 298; |
|
|
|
|
|
var padding = 5; |
|
|
|
|
|
|
|
|
|
|
|
var border = this._getSVGElement("rect", this.svgLegendElements, this.svgLegend); |
|
|
|
|
|
border.setAttributeNS(null, "x", x); |
|
|
|
|
|
border.setAttributeNS(null, "y", y); |
|
|
|
|
|
border.setAttributeNS(null, "width", legendWidth); |
|
|
|
|
|
border.setAttributeNS(null, "height", y + padding + classes.length * spacing); |
|
|
|
|
|
border.setAttributeNS(null, "class", "legendBackground"); |
|
|
|
|
|
x += 5; |
|
|
|
|
|
y += fillHeight + padding; |
|
|
|
|
|
|
|
|
|
|
|
if (classes.length > 0) { |
|
|
|
|
|
for (var i = 0; i < classes.length; i++) { |
|
|
|
|
|
outline = this._getSVGElement("rect", this.svgLegendElements, this.svgLegend); |
|
|
|
|
|
outline.setAttributeNS(null, "x", x); |
|
|
|
|
|
outline.setAttributeNS(null, "y", y - fillHeight); |
|
|
|
|
|
outline.setAttributeNS(null, "width", lineLength); |
|
|
|
|
|
outline.setAttributeNS(null, "height", 2*fillHeight); |
|
|
|
|
|
outline.setAttributeNS(null, "class", "outline"); |
|
|
|
|
|
|
|
|
|
|
|
path = this._getSVGElement("path", this.svgLegendElements, this.svgLegend); |
|
|
|
|
|
path.setAttributeNS(null, "class", classes[i]); |
|
|
|
|
|
path.setAttributeNS(null, "d", "M" + x + ","+y+" L" + (x + lineLength) + ","+y+""); |
|
|
|
|
|
if (this.options.shaded.enabled == true) { |
|
|
|
|
|
fillPath = this._getSVGElement("path", this.svgLegendElements, this.svgLegend); |
|
|
|
|
|
if (this.options.shaded.orientation == 'top') { |
|
|
|
|
|
fillPath.setAttributeNS(null, "d", "M"+x+", " + (y - fillHeight) + |
|
|
|
|
|
"L"+x+","+y+" L"+ (x + lineLength) + ","+y+" L"+ (x + lineLength) + "," + (y - fillHeight)); |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
fillPath.setAttributeNS(null, "d", "M"+x+","+y+" " + |
|
|
|
|
|
"L"+x+"," + (y + fillHeight) + " " + |
|
|
|
|
|
"L"+ (x + lineLength) + "," + (y + fillHeight) + |
|
|
|
|
|
"L"+ (x + lineLength) + ","+y); |
|
|
|
|
|
} |
|
|
|
|
|
fillPath.setAttributeNS(null, "class", classes[i] + " fill"); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (this.options.drawPoints.enabled == true) { |
|
|
|
|
|
this.drawPoint(x + 0.5 * lineLength,y,classes[i], this.svgLegendElements, this.svgLegend); |
|
|
|
|
|
} |
|
|
|
|
|
y += spacing; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
else { |
|
|
|
|
|
//TODO: bars
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this._cleanupSVGElements(this.svgLegendElements); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* @constructor DataStep |
|
|
* @constructor DataStep |
|
|
* The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an |
|
|
* The class DataStep is an iterator for data for the lineGraph. You provide a start data point and an |
|
@ -3486,7 +3707,7 @@ function DataStep(start, end, minimumStep, containerHeight) { |
|
|
// variables
|
|
|
// variables
|
|
|
this.current = 0; |
|
|
this.current = 0; |
|
|
|
|
|
|
|
|
this.autoScale = true; |
|
|
|
|
|
|
|
|
this.autoScale = true; |
|
|
this.stepIndex = 0; |
|
|
this.stepIndex = 0; |
|
|
this.step = 1; |
|
|
this.step = 1; |
|
|
this.scale = 1; |
|
|
this.scale = 1; |
|
@ -3521,6 +3742,41 @@ DataStep.prototype.setRange = function(start, end, minimumStep, containerHeight) |
|
|
} |
|
|
} |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Automatically determine the scale that bests fits the provided minimum step |
|
|
|
|
|
* @param {Number} [minimumStep] The minimum step size in milliseconds |
|
|
|
|
|
*/ |
|
|
|
|
|
DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { |
|
|
|
|
|
// round to floor
|
|
|
|
|
|
var size = this._end - this._start; |
|
|
|
|
|
var safeSize = size * 1.1; |
|
|
|
|
|
var minimumStepValue = minimumStep * (safeSize / containerHeight); |
|
|
|
|
|
var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); |
|
|
|
|
|
|
|
|
|
|
|
var minorStepIdx = -1; |
|
|
|
|
|
var magnitudefactor = Math.pow(10,orderOfMagnitude); |
|
|
|
|
|
|
|
|
|
|
|
var solutionFound = false; |
|
|
|
|
|
for (var i = 0; i <= orderOfMagnitude; i++) { |
|
|
|
|
|
magnitudefactor = Math.pow(10,i); |
|
|
|
|
|
for (var j = 0; j < this.minorSteps.length; j++) { |
|
|
|
|
|
var stepSize = magnitudefactor * this.minorSteps[j]; |
|
|
|
|
|
if (stepSize >= minimumStepValue) { |
|
|
|
|
|
solutionFound = true; |
|
|
|
|
|
minorStepIdx = j; |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
if (solutionFound == true) { |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
this.stepIndex = minorStepIdx; |
|
|
|
|
|
this.scale = magnitudefactor; |
|
|
|
|
|
this.step = magnitudefactor * this.minorSteps[minorStepIdx]; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Set the range iterator to the start date. |
|
|
* Set the range iterator to the start date. |
|
|
*/ |
|
|
*/ |
|
@ -3587,40 +3843,6 @@ DataStep.prototype.getCurrent = function() { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
* Automatically determine the scale that bests fits the provided minimum step |
|
|
|
|
|
* @param {Number} [minimumStep] The minimum step size in milliseconds |
|
|
|
|
|
*/ |
|
|
|
|
|
DataStep.prototype.setMinimumStep = function(minimumStep, containerHeight) { |
|
|
|
|
|
// round to floor
|
|
|
|
|
|
var size = this._end - this._start; |
|
|
|
|
|
var safeSize = size * 1.1; |
|
|
|
|
|
var minimumStepValue = minimumStep * (safeSize / containerHeight); |
|
|
|
|
|
var orderOfMagnitude = Math.round(Math.log(safeSize)/Math.LN10); |
|
|
|
|
|
|
|
|
|
|
|
var minorStepIdx = -1; |
|
|
|
|
|
var magnitudefactor = Math.pow(10,orderOfMagnitude); |
|
|
|
|
|
|
|
|
|
|
|
var solutionFound = false; |
|
|
|
|
|
for (var i = 0; i <= orderOfMagnitude; i++) { |
|
|
|
|
|
magnitudefactor = Math.pow(10,i); |
|
|
|
|
|
for (var j = 0; j < this.minorSteps.length; j++) { |
|
|
|
|
|
var stepSize = magnitudefactor * this.minorSteps[j]; |
|
|
|
|
|
if (stepSize >= minimumStepValue) { |
|
|
|
|
|
solutionFound = true; |
|
|
|
|
|
minorStepIdx = j; |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
if (solutionFound == true) { |
|
|
|
|
|
break; |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
this.stepIndex = minorStepIdx; |
|
|
|
|
|
this.scale = magnitudefactor; |
|
|
|
|
|
this.step = magnitudefactor * this.minorSteps[minorStepIdx]; |
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Snap a date to a rounded value. |
|
|
* Snap a date to a rounded value. |
|
|
* The snap intervals are dependent on the current scale and step. |
|
|
* The snap intervals are dependent on the current scale and step. |
|
@ -8727,7 +8949,7 @@ Timeline.prototype.redraw = function() { |
|
|
} |
|
|
} |
|
|
else { // orientation == 'bottom'
|
|
|
else { // orientation == 'bottom'
|
|
|
// keep the items aligned to the axis at the bottom
|
|
|
// keep the items aligned to the axis at the bottom
|
|
|
offset = props.centerContainer.height - props.center.height; |
|
|
|
|
|
|
|
|
offset = 0;// props.centerContainer.height - props.center.height;
|
|
|
} |
|
|
} |
|
|
dom.center.style.left = '0'; |
|
|
dom.center.style.left = '0'; |
|
|
dom.center.style.top = offset+ 'px'; |
|
|
dom.center.style.top = offset+ 'px'; |
|
@ -9387,7 +9609,7 @@ Graph2d.prototype.redraw = function() { |
|
|
} |
|
|
} |
|
|
else { // orientation == 'bottom'
|
|
|
else { // orientation == 'bottom'
|
|
|
// keep the items aligned to the axis at the bottom
|
|
|
// keep the items aligned to the axis at the bottom
|
|
|
offset = props.centerContainer.height - props.center.height; |
|
|
|
|
|
|
|
|
offset = 0; //props.centerContainer.height - props.center.height;
|
|
|
} |
|
|
} |
|
|
dom.center.style.left = '0'; |
|
|
dom.center.style.left = '0'; |
|
|
dom.center.style.top = offset+ 'px'; |
|
|
dom.center.style.top = offset+ 'px'; |
|
@ -13587,7 +13809,7 @@ var barnesHutMixin = { |
|
|
* @private |
|
|
* @private |
|
|
*/ |
|
|
*/ |
|
|
_splitBranch : function(parentBranch) { |
|
|
_splitBranch : function(parentBranch) { |
|
|
// if the branch is filled with a node, replace the node in the new subset.
|
|
|
|
|
|
|
|
|
// if the branch is shaded with a node, replace the node in the new subset.
|
|
|
var containedNode = null; |
|
|
var containedNode = null; |
|
|
if (parentBranch.childrenCount == 1) { |
|
|
if (parentBranch.childrenCount == 1) { |
|
|
containedNode = parentBranch.children.data; |
|
|
containedNode = parentBranch.children.data; |
|
|