jit.js revision 4d946ab78d026f3aab150db33c5c5af30863c15b
/*
Copyright (c) 2011 Sencha Inc. - Author: Nicolas Garcia Belmonte (http://philogb.github.com/)
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
(function () {
/*
File: Core.js
*/
/*
Object: $jit
Defines the namespace for all library Classes and Objects.
This variable is the *only* global variable defined in the Toolkit.
There are also other interesting properties attached to this variable described below.
*/
w = w || window;
for(var k in $jit) {
w[k] = $jit[k];
}
}
};
/*
Object: $jit.id
Works just like *document.getElementById*
Example:
(start code js)
var element = $jit.id('elementId');
(end code)
*/
/*
Object: $jit.util
Contains utility functions.
Some of the utility functions and the Class system were based in the MooTools Framework
<http://mootools.net>. Copyright (c) 2006-2010 Valerio Proietti, <http://mad4milk.net/>.
MIT license <http://mootools.net/license.txt>.
These methods are generally also implemented in DOM manipulation frameworks like JQuery, MooTools and Prototype.
I'd suggest you to use the functions from those libraries instead of using these, since their functions
are widely used and tested in many different platforms/browsers. Use these functions only if you have to.
*/
var $ = function(d) {
return document.getElementById(d);
};
$.empty = function() {
};
/*
Method: extend
Augment an object by appending another object's properties.
Parameters:
original - (object) The object to be extended.
extended - (object) An object which properties are going to be appended to the original object.
Example:
(start code js)
$jit.util.extend({ 'a': 1, 'b': 2 }, { 'b': 3, 'c': 4 }); //{ 'a':1, 'b': 3, 'c': 4 }
(end code)
*/
return original;
};
return value;
};
};
return +new Date;
};
/*
Method: splat
Returns an array wrapping *obj* if *obj* is not an array. Returns *obj* otherwise.
Parameters:
obj - (mixed) The object to be wrapped in an array.
Example:
(start code js)
$jit.util.splat(3); //[3]
$jit.util.splat([3]); //[3]
(end code)
*/
};
};
/*
Method: each
Iterates through an iterable applying *f*.
Parameters:
iterable - (array) The original array.
fn - (function) The function to apply to the array elements.
Example:
(start code js)
$jit.util.each([3, 4, 5], function(n) { alert('number ' + n); });
(end code)
*/
if (type == 'object') {
} else {
}
};
}
return -1;
};
/*
Method: map
Maps or collects an array by applying *f*.
Parameters:
array - (array) The original array.
f - (function) The function to apply to the array elements.
Example:
(start code js)
$jit.util.map([3, 4, 5], function(n) { return n*n; }); //[9, 16, 25]
(end code)
*/
var ans = [];
});
return ans;
};
/*
Method: reduce
Iteratively applies the binary function *f* storing the result in an accumulator.
Parameters:
array - (array) The original array.
f - (function) The function to apply to the array elements.
opt - (optional|mixed) The starting value for the acumulator.
Example:
(start code js)
$jit.util.reduce([3, 4, 5], function(x, y) { return x + y; }, 0); //12
(end code)
*/
if(l==0) return opt;
while(l--) {
}
return acum;
};
/*
Method: merge
Merges n-objects and their sub-objects creating a new, fresh object.
Parameters:
An arbitrary number of objects.
Example:
(start code js)
$jit.util.merge({ 'a': 1, 'b': 2 }, { 'b': 3, 'c': 4 }); //{ 'a':1, 'b': 3, 'c': 4 }
(end code)
*/
$.merge = function() {
var mix = {};
continue;
}
}
return mix;
};
var unlinked;
case 'object':
unlinked = {};
for ( var p in object)
break;
case 'array':
unlinked = [];
break;
default:
return object;
}
return unlinked;
};
$.zip = function() {
for(var i=0, row=[]; i<l; i++) {
}
}
return ans;
};
/*
Method: rgbToHex
Converts an RGB array into a Hex string.
Parameters:
srcArray - (array) An array with R, G and B values
Example:
(start code js)
$jit.util.rgbToHex([255, 255, 255]); //'#ffffff'
(end code)
*/
return null;
return 'transparent';
var hex = [];
for ( var i = 0; i < 3; i++) {
}
};
/*
Method: hexToRgb
Converts an Hex color string into an RGB array.
Parameters:
hex - (string) A color hex string.
Example:
(start code js)
$jit.util.hexToRgb('#fff'); //[255, 255, 255]
(end code)
*/
return null;
var rgb = [];
for ( var i = 0; i < 3; i++) {
}
return rgb;
} else {
}
};
if (elem.parentNode)
if (elem.clearAttributes)
};
}
};
/*
Method: addEvent
Cross-browser add event listener.
Parameters:
obj - (obj) The Element to attach the listener to.
type - (string) The listener type. For example 'click', or 'mousemove'.
fn - (function) The callback function to be used when the event is fired.
Example:
(start code js)
$jit.util.addEvent(elem, 'click', function(){ alert('hello'); });
(end code)
*/
if (obj.addEventListener)
else
};
}
};
};
};
};
return {
};
function getOffsets(elem) {
var position = {
x: 0,
y: 0
};
}
return position;
}
function getScrolls(elem) {
var position = {
x: 0,
y: 0
};
}
return position;
}
}
};
$.event = {
},
getWheel: function(e) {
},
isRightClick: function(e) {
},
// get mouse position
//TODO(nico): make touch event handling better
e = e.touches[0];
}
var page = {
};
return page;
},
stop: function(e) {
if (e.stopPropagation) e.stopPropagation();
e.cancelBubble = true;
if (e.preventDefault) e.preventDefault();
else e.returnValue = false;
}
};
var Class = function(properties) {
properties = properties || {};
var klass = function() {
for ( var key in this) {
if (typeof this[key] != 'function')
}
this.constructor = klass;
if (Class.prototyping)
return this;
: this;
//typize
this.$$family = 'class';
return instance;
};
if (!properties[mutator])
continue;
delete properties[mutator];
}
return klass;
};
}
}
delete Class.prototyping;
});
return self;
}
};
for ( var key in properties) {
}
} else if (type == 'object') {
} else {
}
}
return object;
},
parent = null;
var override = function() {
return value;
};
}
});
});
return this;
};
/*
Object: $jit.json
Provides JSON utility functions.
Most of these functions are JSON-tree traversal and manipulation functions.
*/
/*
Method: prune
Clears all tree nodes having depth greater than maxLevel.
Parameters:
tree - (object) A JSON tree object. For more information please see <Loader.loadJSON>.
maxLevel - (number) An integer specifying the maximum level allowed for this tree. All nodes having depth greater than max level will be deleted.
*/
}
});
},
/*
Method: getParent
Returns the parent node of the node having _id_ as id.
Parameters:
tree - (object) A JSON tree object. See also <Loader.loadJSON>.
id - (string) The _id_ of the child node whose parent will be returned.
Returns:
A tree JSON node if any, or false otherwise.
*/
return false;
return tree;
else {
if (ans)
return ans;
}
}
}
return false;
},
/*
Method: getSubtree
Returns the subtree that matches the given id.
Parameters:
tree - (object) A JSON tree object. See also <Loader.loadJSON>.
id - (string) A node *unique* identifier.
Returns:
A subtree having a root node matching the given id. Returns null if no subtree matching the id is found.
*/
return tree;
if (t != null)
return t;
}
return null;
},
/*
Method: eachLevel
Iterates on tree nodes with relative depth less or equal than a specified level.
Parameters:
tree - (object) A JSON tree or subtree. See also <Loader.loadJSON>.
initLevel - (number) An integer specifying the initial relative level. Usually zero.
toLevel - (number) An integer specifying a top level. This method will iterate only through nodes with depth less than or equal this number.
action - (function) A function that receives a node and an integer specifying the actual level of the node.
Example:
(start code js)
$jit.json.eachLevel(tree, 0, 3, function(node, depth) {
alert(node.name + ' ' + depth);
});
(end code)
*/
}
}
},
/*
Method: each
A JSON tree iterator.
Parameters:
tree - (object) A JSON tree or subtree. See also <Loader.loadJSON>.
action - (function) A function that receives a node.
Example:
(start code js)
$jit.json.each(tree, function(node) {
alert(node.name);
});
(end code)
*/
}
};
/*
An object containing multiple type of transformations.
*/
$extend: true,
linear: function(p){
return p;
}
};
(function(){
return $.extend(transition, {
},
},
}
});
};
var transitions = {
Pow: function(p, x){
},
Expo: function(p){
},
Circ: function(p){
},
Sine: function(p){
},
Back: function(p, x){
x = x[0] || 1.618;
},
Bounce: function(p){
var value;
for ( var a = 0, b = 1; 1; a += b, b /= 2) {
if (p >= (7 - 4 * a) / 11) {
break;
}
}
return value;
},
Elastic: function(p, x){
}
};
});
$.each( [
'Quad', 'Cubic', 'Quart', 'Quint'
], function(elem, i){
return Math.pow(p, [
i + 2
]);
});
});
})();
/*
A Class that can perform animations for generic objects.
If you are looking for animation transitions please take a look at the <Trans> object.
Used by:
<Graph.Plot>
Based on:
The Animation class is based in the MooTools Framework <http://mootools.net>. Copyright (c) 2006-2009 Valerio Proietti, <http://mad4milk.net/>. MIT license <http://mootools.net/license.txt>.
*/
initialize: function(options){
this.setOptions(options);
},
setOptions: function(options){
var opt = {
duration: 2500,
fps: 40,
link: 'ignore'
};
return this;
},
step: function(){
} else {
}
},
start: function(){
if (!this.check())
return this;
this.time = 0;
this.startTimer();
return this;
},
startTimer: function(){
if (this.timer)
return false;
this.timer = setInterval((function(){
return true;
},
pause: function(){
this.stopTimer();
return this;
},
resume: function(){
this.startTimer();
return this;
},
stopTimer: function(){
if (!this.timer)
return false;
return true;
},
check: function(){
if (!this.timer)
return true;
this.stopTimer();
return true;
}
return false;
}
});
var Options = function() {
} else {
}
}
return ans;
};
/*
* File: Options.AreaChart.js
*
*/
/*
Object: Options.AreaChart
<AreaChart> options.
Other options included in the AreaChart are <Options.Canvas>, <Options.Label>, <Options.Margin>, <Options.Tips> and <Options.Events>.
Syntax:
(start code js)
Options.AreaChart = {
animate: true,
labelOffset: 3,
type: 'stacked',
selectOnHover: true,
showAggregates: true,
showLabels: true,
filterOnClick: false,
restoreOnRightClick: false
};
(end code)
Example:
(start code js)
var areaChart = new $jit.AreaChart({
animate: true,
type: 'stacked:gradient',
selectOnHover: true,
filterOnClick: true,
restoreOnRightClick: true
});
(end code)
Parameters:
animate - (boolean) Default's *true*. Whether to add animated transitions when filtering/restoring stacks.
labelOffset - (number) Default's *3*. Adds margin between the label and the default place where it should be drawn.
type - (string) Default's *'stacked'*. Stack style. Posible values are 'stacked', 'stacked:gradient' to add gradients.
selectOnHover - (boolean) Default's *true*. If true, it will add a mark to the hovered stack.
showAggregates - (boolean, function) Default's *true*. Display the values of the stacks. Can also be a function that returns *true* or *false* to display or filter some values. That same function can also return a string with the formatted value.
showLabels - (boolean, function) Default's *true*. Display the name of the slots. Can also be a function that returns *true* or *false* to display or not each label.
filterOnClick - (boolean) Default's *true*. Select the clicked stack by hiding all other stacks.
restoreOnRightClick - (boolean) Default's *true*. Show all stacks by right clicking.
*/
$extend: true,
animate: true,
Tips: {
enable: false,
},
Events: {
enable: false,
},
selectOnHover: true,
showAggregates: true,
showLabels: true,
filterOnClick: false,
restoreOnRightClick: false
};
/*
* File: Options.Margin.js
*
*/
/*
Object: Options.Margin
Canvas drawing margins.
Syntax:
(start code js)
Options.Margin = {
top: 0,
left: 0,
right: 0,
bottom: 0
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Margin: {
right: 10,
bottom: 20
}
});
(end code)
Parameters:
top - (number) Default's *0*. Top margin.
left - (number) Default's *0*. Left margin.
right - (number) Default's *0*. Right margin.
bottom - (number) Default's *0*. Bottom margin.
*/
$extend: false,
top: 0,
left: 0,
right: 0,
bottom: 0
};
/*
* File: Options.Canvas.js
*
*/
/*
Object: Options.Canvas
These are Canvas general options, like where to append it in the DOM, its dimensions, background,
and other more advanced options.
Syntax:
(start code js)
Options.Canvas = {
injectInto: 'id',
type: '2D', //'3D'
width: false,
height: false,
useCanvas: false,
withLabels: true,
background: false
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
injectInto: 'someContainerId',
width: 500,
height: 700
});
(end code)
Parameters:
injectInto - *required* (string|element) The id of the DOM container for the visualization. It can also be an Element provided that it has an id.
type - (string) Context type. Default's 2D but can be 3D for webGL enabled browsers.
width - (number) Default's to the *container's offsetWidth*. The width of the canvas.
height - (number) Default's to the *container's offsetHeight*. The height of the canvas.
useCanvas - (boolean|object) Default's *false*. You can pass another <Canvas> instance to be used by the visualization.
withLabels - (boolean) Default's *true*. Whether to use a label container for the visualization.
background - (boolean|object) Default's *false*. An object containing information about the rendering of a background canvas.
*/
$extend: true,
injectInto: 'id',
type: '2D',
width: false,
height: false,
useCanvas: false,
withLabels: true,
background: false,
Scene: {
Lighting: {
enable: false,
directional: {
}
}
}
};
/*
* File: Options.Tree.js
*
*/
/*
Object: Options.Tree
Options related to (strict) Tree layout algorithms. These options are used by the <ST> visualization.
Syntax:
(start code js)
Options.Tree = {
orientation: "left",
subtreeOffset: 8,
siblingOffset: 5,
indent:10,
multitree: false,
align:"center"
};
(end code)
Example:
(start code js)
var st = new $jit.ST({
orientation: 'left',
subtreeOffset: 1,
siblingOFfset: 5,
multitree: true
});
(end code)
Parameters:
subtreeOffset - (number) Default's 8. Separation offset between subtrees.
siblingOffset - (number) Default's 5. Separation offset between siblings.
orientation - (string) Default's 'left'. Tree orientation layout. Possible values are 'left', 'top', 'right', 'bottom'.
align - (string) Default's *center*. Whether the tree alignment is 'left', 'center' or 'right'.
indent - (number) Default's 10. Used when *align* is left or right and shows an indentation between parent and children.
multitree - (boolean) Default's *false*. Used with the node $orn data property for creating multitrees.
*/
$extend: true,
orientation: "left",
subtreeOffset: 8,
siblingOffset: 5,
indent:10,
multitree: false,
align:"center"
};
/*
* File: Options.Node.js
*
*/
/*
Object: Options.Node
Provides Node rendering options for Tree and Graph based visualizations.
Syntax:
(start code js)
Options.Node = {
overridable: false,
type: 'circle',
color: '#ccb',
alpha: 1,
dim: 3,
height: 20,
width: 90,
autoHeight: false,
autoWidth: false,
lineWidth: 1,
transform: true,
align: "center",
angularWidth:1,
span:1,
CanvasStyles: {}
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Node: {
overridable: true,
width: 30,
autoHeight: true,
type: 'rectangle'
}
});
(end code)
Parameters:
overridable - (boolean) Default's *false*. Determine whether or not general node properties can be overridden by a particular <Graph.Node>.
type - (string) Default's *circle*. Node's shape. Node built-in types include 'circle', 'rectangle', 'square', 'ellipse', 'triangle', 'star'. The default Node type might vary in each visualization. You can also implement (non built-in) custom Node types into your visualizations.
color - (string) Default's *#ccb*. Node color.
alpha - (number) Default's *1*. The Node's alpha value. *1* is for full opacity.
dim - (number) Default's *3*. An extra parameter used by 'circle', 'square', 'triangle' and 'star' node types. Depending on each shape, this parameter can set the radius of a circle, half the length of the side of a square, half the base and half the height of a triangle or the length of a side of a star (concave decagon).
height - (number) Default's *20*. Used by 'rectangle' and 'ellipse' node types. The height of the node shape.
width - (number) Default's *90*. Used by 'rectangle' and 'ellipse' node types. The width of the node shape.
autoHeight - (boolean) Default's *false*. Whether to set an auto height for the node depending on the content of the Node's label.
autoWidth - (boolean) Default's *false*. Whether to set an auto width for the node depending on the content of the Node's label.
lineWidth - (number) Default's *1*. Used only by some Node shapes. The line width of the strokes of a node.
transform - (boolean) Default's *true*. Only used by the <Hypertree> visualization. Whether to scale the nodes according to the moebius transformation.
align - (string) Default's *center*. Possible values are 'center', 'left' or 'right'. Used only by the <ST> visualization, these parameters are used for aligning nodes when some of they dimensions vary.
angularWidth - (number) Default's *1*. Used in radial layouts (like <RGraph> or <Sunburst> visualizations). The amount of relative 'space' set for a node.
span - (number) Default's *1*. Used in radial layouts (like <RGraph> or <Sunburst> visualizations). The angle span amount set for a node.
CanvasStyles - (object) Default's an empty object (i.e. {}). Attach any other canvas specific property that you'd set to the canvas context before plotting a Node.
*/
$extend: false,
overridable: false,
type: 'circle',
color: '#ccb',
alpha: 1,
dim: 3,
height: 20,
width: 90,
autoHeight: false,
autoWidth: false,
lineWidth: 1,
transform: true,
align: "center",
angularWidth:1,
span:1,
//Raw canvas styles to be
//applied to the context instance
//before plotting a node
CanvasStyles: {}
};
/*
* File: Options.Edge.js
*
*/
/*
Object: Options.Edge
Provides Edge rendering options for Tree and Graph based visualizations.
Syntax:
(start code js)
Options.Edge = {
overridable: false,
type: 'line',
color: '#ccb',
lineWidth: 1,
dim:15,
alpha: 1,
CanvasStyles: {}
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Edge: {
overridable: true,
type: 'line',
color: '#fff',
CanvasStyles: {
shadowColor: '#ccc',
shadowBlur: 10
}
}
});
(end code)
Parameters:
overridable - (boolean) Default's *false*. Determine whether or not general edges properties can be overridden by a particular <Graph.Adjacence>.
type - (string) Default's 'line'. Edge styles include 'line', 'hyperline', 'arrow'. The default Edge type might vary in each visualization. You can also implement custom Edge types.
color - (string) Default's '#ccb'. Edge color.
alpha - (number) Default's *1*. The Edge's alpha value. *1* is for full opacity.
dim - (number) Default's *15*. An extra parameter used by other complex shapes such as quadratic, bezier or arrow, to determine the shape's diameter.
epsilon - (number) Default's *7*. Only used when using *enableForEdges* in <Options.Events>. This dimension is used to create an area for the line where the contains method for the edge returns *true*.
CanvasStyles - (object) Default's an empty object (i.e. {}). Attach any other canvas specific property that you'd set to the canvas context before plotting an Edge.
See also:
If you want to know more about how to customize Node/Edge data per element, in the JSON or programmatically, take a look at this article.
*/
$extend: false,
overridable: false,
type: 'line',
color: '#ccb',
lineWidth: 1,
dim:15,
alpha: 1,
epsilon: 7,
//Raw canvas styles to be
//applied to the context instance
//before plotting an edge
CanvasStyles: {}
};
/*
* File: Options.Fx.js
*
*/
/*
Object: Options.Fx
Provides animation options like duration of the animations, frames per second and animation transitions.
Syntax:
(start code js)
Options.Fx = {
fps:40,
duration: 2500,
transition: $jit.Trans.Quart.easeInOut,
clearCanvas: true
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
duration: 1000,
fps: 35,
transition: $jit.Trans.linear
});
(end code)
Parameters:
clearCanvas - (boolean) Default's *true*. Whether to clear the frame/canvas when the viz is plotted or animated.
duration - (number) Default's *2500*. Duration of the animation in milliseconds.
fps - (number) Default's *40*. Frames per second.
transition - (object) Default's *$jit.Trans.Quart.easeInOut*. The transition used for the animations. See below for a more detailed explanation.
Object: $jit.Trans
This object is used for specifying different animation transitions in all visualizations.
There are many different type of animation transitions.
linear:
Displays a linear transition
>Trans.linear
(see Linear.png)
Quad:
Displays a Quadratic transition.
>Trans.Quad.easeIn
>Trans.Quad.easeOut
>Trans.Quad.easeInOut
(see Quad.png)
Cubic:
Displays a Cubic transition.
>Trans.Cubic.easeIn
>Trans.Cubic.easeOut
>Trans.Cubic.easeInOut
(see Cubic.png)
Quart:
Displays a Quartetic transition.
>Trans.Quart.easeIn
>Trans.Quart.easeOut
>Trans.Quart.easeInOut
(see Quart.png)
Quint:
Displays a Quintic transition.
>Trans.Quint.easeIn
>Trans.Quint.easeOut
>Trans.Quint.easeInOut
(see Quint.png)
Expo:
Displays an Exponential transition.
>Trans.Expo.easeIn
>Trans.Expo.easeOut
>Trans.Expo.easeInOut
(see Expo.png)
Circ:
Displays a Circular transition.
>Trans.Circ.easeIn
>Trans.Circ.easeOut
>Trans.Circ.easeInOut
(see Circ.png)
Sine:
Displays a Sineousidal transition.
>Trans.Sine.easeIn
>Trans.Sine.easeOut
>Trans.Sine.easeInOut
(see Sine.png)
Back:
>Trans.Back.easeIn
>Trans.Back.easeOut
>Trans.Back.easeInOut
(see Back.png)
Bounce:
Bouncy transition.
>Trans.Bounce.easeIn
>Trans.Bounce.easeOut
>Trans.Bounce.easeInOut
(see Bounce.png)
Elastic:
Elastic curve.
>Trans.Elastic.easeIn
>Trans.Elastic.easeOut
>Trans.Elastic.easeInOut
(see Elastic.png)
Based on:
Easing and Transition animation methods are based in the MooTools Framework <http://mootools.net>. Copyright (c) 2006-2010 Valerio Proietti, <http://mad4milk.net/>. MIT license <http://mootools.net/license.txt>.
*/
$extend: true,
fps:40,
duration: 2500,
clearCanvas: true
};
/*
* File: Options.Label.js
*
*/
/*
Object: Options.Label
Provides styling for Labels such as font size, family, etc. Also sets Node labels as HTML, SVG or Native canvas elements.
Syntax:
(start code js)
Options.Label = {
overridable: false,
type: 'HTML', //'SVG', 'Native'
style: ' ',
size: 10,
family: 'sans-serif',
textAlign: 'center',
textBaseline: 'alphabetic',
color: '#fff'
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Label: {
type: 'Native',
size: 11,
color: '#ccc'
}
});
(end code)
Parameters:
overridable - (boolean) Default's *false*. Determine whether or not general label properties can be overridden by a particular <Graph.Node>.
type - (string) Default's *HTML*. The type for the labels. Can be 'HTML', 'SVG' or 'Native' canvas labels.
style - (string) Default's *empty string*. Can be 'italic' or 'bold'. This parameter is only taken into account when using 'Native' canvas labels. For DOM based labels the className *node* is added to the DOM element for styling via CSS. You can also use <Options.Controller> methods to style individual labels.
size - (number) Default's *10*. The font's size. This parameter is only taken into account when using 'Native' canvas labels. For DOM based labels the className *node* is added to the DOM element for styling via CSS. You can also use <Options.Controller> methods to style individual labels.
family - (string) Default's *sans-serif*. The font's family. This parameter is only taken into account when using 'Native' canvas labels. For DOM based labels the className *node* is added to the DOM element for styling via CSS. You can also use <Options.Controller> methods to style individual labels.
color - (string) Default's *#fff*. The font's color. This parameter is only taken into account when using 'Native' canvas labels. For DOM based labels the className *node* is added to the DOM element for styling via CSS. You can also use <Options.Controller> methods to style individual labels.
*/
$extend: false,
overridable: false,
style: ' ',
size: 10,
family: 'sans-serif',
textAlign: 'center',
textBaseline: 'alphabetic',
color: '#fff'
};
/*
* File: Options.Tips.js
*
*/
/*
Object: Options.Tips
Tips options
Syntax:
(start code js)
Options.Tips = {
enable: false,
type: 'auto',
offsetX: 20,
offsetY: 20,
onShow: $.empty,
onHide: $.empty
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Tips: {
enable: true,
type: 'Native',
offsetX: 10,
offsetY: 10,
onShow: function(tip, node) {
tip.innerHTML = node.name;
}
}
});
(end code)
Parameters:
enable - (boolean) Default's *false*. If *true*, a tooltip will be shown when a node is hovered. The tooltip is a div DOM element having "tip" as CSS class.
type - (string) Default's *auto*. Defines where to attach the MouseEnter/Leave tooltip events. Possible values are 'Native' to attach them to the canvas or 'HTML' to attach them to DOM label elements (if defined). 'auto' sets this property to the value of <Options.Label>'s *type* property.
offsetX - (number) Default's *20*. An offset added to the current tooltip x-position (which is the same as the current mouse position). Default's 20.
offsetY - (number) Default's *20*. An offset added to the current tooltip y-position (which is the same as the current mouse position). Default's 20.
onShow(tip, node) - This callack is used right before displaying a tooltip. The first formal parameter is the tip itself (which is a DivElement). The second parameter may be a <Graph.Node> for graph based visualizations or an object with label, value properties for charts.
onHide() - This callack is used when hiding a tooltip.
*/
$extend: false,
enable: false,
type: 'auto',
offsetX: 20,
offsetY: 20,
force: false,
};
/*
* File: Options.NodeStyles.js
*
*/
/*
Object: Options.NodeStyles
Apply different styles when a node is hovered or selected.
Syntax:
(start code js)
Options.NodeStyles = {
enable: false,
type: 'auto',
stylesHover: false,
stylesClick: false
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
NodeStyles: {
enable: true,
type: 'Native',
stylesHover: {
dim: 30,
color: '#fcc'
},
duration: 600
}
});
(end code)
Parameters:
enable - (boolean) Default's *false*. Whether to enable this option.
type - (string) Default's *auto*. Use this to attach the hover/click events in the nodes or the nodes labels (if they have been defined as DOM elements: 'HTML' or 'SVG', see <Options.Label> for more details). The default 'auto' value will set NodeStyles to the same type defined for <Options.Label>.
stylesHover - (boolean|object) Default's *false*. An object with node styles just like the ones defined for <Options.Node> or *false* otherwise.
stylesClick - (boolean|object) Default's *false*. An object with node styles just like the ones defined for <Options.Node> or *false* otherwise.
*/
Options.NodeStyles = {
$extend: false,
enable: false,
type: 'auto',
stylesHover: false,
stylesClick: false
};
/*
* File: Options.Events.js
*
*/
/*
Object: Options.Events
Syntax:
(start code js)
Options.Events = {
enable: false,
enableForEdges: false,
type: 'auto',
onClick: $.empty,
onRightClick: $.empty,
onMouseMove: $.empty,
onMouseEnter: $.empty,
onMouseLeave: $.empty,
onDragStart: $.empty,
onDragMove: $.empty,
onDragCancel: $.empty,
onDragEnd: $.empty,
onTouchStart: $.empty,
onTouchMove: $.empty,
onTouchEnd: $.empty,
onTouchCancel: $.empty,
onMouseWheel: $.empty
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Events: {
enable: true,
onClick: function(node, eventInfo, e) {
viz.doSomething();
},
onMouseEnter: function(node, eventInfo, e) {
viz.canvas.getElement().style.cursor = 'pointer';
},
onMouseLeave: function(node, eventInfo, e) {
viz.canvas.getElement().style.cursor = '';
}
}
});
(end code)
Parameters:
enable - (boolean) Default's *false*. Whether to enable the Event system.
enableForEdges - (boolean) Default's *false*. Whether to track events also in arcs. If *true* the same callbacks -described below- are used for nodes *and* edges. A simple duck type check for edges is to check for *node.nodeFrom*.
type - (string) Default's 'auto'. Whether to attach the events onto the HTML labels (via event delegation) or to use the custom 'Native' canvas Event System of the library. 'auto' is set when you let the <Options.Label> *type* parameter decide this.
onClick(node, eventInfo, e) - Triggered when a user performs a click in the canvas. *node* is the <Graph.Node> clicked or false if no node has been clicked. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onRightClick(node, eventInfo, e) - Triggered when a user performs a right click in the canvas. *node* is the <Graph.Node> right clicked or false if no node has been clicked. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onMouseMove(node, eventInfo, e) - Triggered when the user moves the mouse. *node* is the <Graph.Node> under the cursor as it's moving over the canvas or false if no node has been clicked. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onMouseEnter(node, eventInfo, e) - Triggered when a user moves the mouse over a node. *node* is the <Graph.Node> that the mouse just entered. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onMouseLeave(node, eventInfo, e) - Triggered when the user mouse-outs a node. *node* is the <Graph.Node> 'mouse-outed'. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onDragStart(node, eventInfo, e) - Triggered when the user mouse-downs over a node. *node* is the <Graph.Node> being pressed. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onDragMove(node, eventInfo, e) - Triggered when a user, after pressing the mouse button over a node, moves the mouse around. *node* is the <Graph.Node> being dragged. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onDragEnd(node, eventInfo, e) - Triggered when a user finished dragging a node. *node* is the <Graph.Node> being dragged. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onDragCancel(node, eventInfo, e) - Triggered when the user releases the mouse button over a <Graph.Node> that wasn't dragged (i.e. the user didn't perform any mouse movement after pressing the mouse button). *node* is the <Graph.Node> being dragged. *e* is the grabbed event (should return the native event in a cross-browser manner). *eventInfo* is an object containing useful methods like *getPos* to get the mouse position relative to the canvas.
onTouchStart(node, eventInfo, e) - Behaves just like onDragStart.
onTouchMove(node, eventInfo, e) - Behaves just like onDragMove.
onTouchEnd(node, eventInfo, e) - Behaves just like onDragEnd.
onTouchCancel(node, eventInfo, e) - Behaves just like onDragCancel.
onMouseWheel(delta, e) - Triggered when the user uses the mouse scroll over the canvas. *delta* is 1 or -1 depending on the sense of the mouse scroll.
*/
$extend: false,
enable: false,
enableForEdges: false,
type: 'auto',
onRightClick: $.empty,
onMouseMove: $.empty,
onMouseEnter: $.empty,
onMouseLeave: $.empty,
onDragStart: $.empty,
onDragMove: $.empty,
onDragCancel: $.empty,
onTouchStart: $.empty,
onTouchMove: $.empty,
onTouchEnd: $.empty,
};
/*
* File: Options.Navigation.js
*
*/
/*
Object: Options.Navigation
by all visualizations except charts (<AreaChart>, <BarChart> and <PieChart>).
Syntax:
(start code js)
Options.Navigation = {
enable: false,
type: 'auto',
panning: false, //true, 'avoid nodes'
zooming: false
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
Navigation: {
enable: true,
panning: 'avoid nodes',
zooming: 20
}
});
(end code)
Parameters:
enable - (boolean) Default's *false*. Whether to enable Navigation capabilities.
type - (string) Default's 'auto'. Whether to attach the navigation events onto the HTML labels (via event delegation) or to use the custom 'Native' canvas Event System of the library. When 'auto' set when you let the <Options.Label> *type* parameter decide this.
panning - (boolean|string) Default's *false*. Set this property to *true* if you want to add Drag and Drop panning support to the visualization. You can also set this parameter to 'avoid nodes' to enable DnD panning but disable it if the DnD is taking place over a node. This is useful when some other events like Drag & Drop for nodes are added to <Graph.Nodes>.
zooming - (boolean|number) Default's *false*. Set this property to a numeric value to turn mouse-scroll zooming on. The number will be proportional to the mouse-scroll sensitivity.
*/
Options.Navigation = {
$extend: false,
enable: false,
type: 'auto',
panning: false, //true | 'avoid nodes'
zooming: false
};
/*
* File: Options.Controller.js
*
*/
/*
Object: Options.Controller
Provides controller methods. Controller methods are callback functions that get called at different stages
of the animation, computing or plotting of the visualization.
Implemented by:
All visualizations except charts (<AreaChart>, <BarChart> and <PieChart>).
Syntax:
(start code js)
Options.Controller = {
onBeforeCompute: $.empty,
onAfterCompute: $.empty,
onCreateLabel: $.empty,
onPlaceLabel: $.empty,
onComplete: $.empty,
onBeforePlotLine:$.empty,
onAfterPlotLine: $.empty,
onBeforePlotNode:$.empty,
onAfterPlotNode: $.empty,
request: false
};
(end code)
Example:
(start code js)
var viz = new $jit.Viz({
onBeforePlotNode: function(node) {
if(node.selected) {
node.setData('color', '#ffc');
} else {
node.removeData('color');
}
},
onBeforePlotLine: function(adj) {
if(adj.nodeFrom.selected && adj.nodeTo.selected) {
adj.setData('color', '#ffc');
} else {
adj.removeData('color');
}
},
onAfterCompute: function() {
alert("computed!");
}
});
(end code)
Parameters:
onBeforeCompute(node) - This method is called right before performing all computations and animations. The selected <Graph.Node> is passed as parameter.
onAfterCompute() - This method is triggered after all animations or computations ended.
onCreateLabel(domElement, node) - This method receives a new label DIV element as first parameter, and the corresponding <Graph.Node> as second parameter. This method will only be called once for each label. This method is useful when adding events or styles to the labels used by the JIT.
onPlaceLabel(domElement, node) - This method receives a label DIV element as first parameter and the corresponding <Graph.Node> as second parameter. This method is called each time a label has been placed in the visualization, for example at each step of an animation, and thus it allows you to update the labels properties, such as size or position. Note that onPlaceLabel will be triggered after updating the labels positions. That means that, for example, the left and top css properties are already updated to match the nodes positions. Width and height properties are not set however.
onBeforePlotNode(node) - This method is triggered right before plotting each <Graph.Node>. This method is useful for changing a node style right before plotting it.
onAfterPlotNode(node) - This method is triggered right after plotting each <Graph.Node>.
onBeforePlotLine(adj) - This method is triggered right before plotting a <Graph.Adjacence>. This method is useful for adding some styles to a particular edge before being plotted.
onAfterPlotLine(adj) - This method is triggered right after plotting a <Graph.Adjacence>.
*Used in <ST>, <TM.Base> and <Icicle> visualizations*
request(nodeId, level, onComplete) - This method is used for buffering information into the visualization. When clicking on an empty node, the visualization will make a request for this node's subtrees, specifying a given level for this subtree (defined by _levelsToShow_). Once the request is completed, the onComplete callback should be called with the given result. This is useful to provide on-demand information into the visualizations withought having to load the entire information from start. The parameters used by this method are _nodeId_, which is the id of the root of the subtree to request, _level_ which is the depth of the subtree to be requested (0 would mean just the root node). _onComplete_ is an object having the callback method _onComplete.onComplete(json)_ that should be called once the json has been retrieved.
*/
Options.Controller = {
$extend: true,
onBeforeCompute: $.empty,
onAfterCompute: $.empty,
onCreateLabel: $.empty,
onPlaceLabel: $.empty,
onComplete: $.empty,
onAfterPlotLine: $.empty,
onAfterPlotNode: $.empty,
request: false
};
/*
* File: Extras.js
*
* Provides Extras such as Tips and Style Effects.
*
* Description:
*
* Provides the <Tips> and <NodeStyles> classes and functions.
*
*/
/*
* Manager for mouse events (clicking and mouse moving).
*
* This class is used for registering objects implementing onClick
* and onMousemove methods. These methods are called when clicking or
* moving the mouse around the Canvas.
* For now, <Tips> and <NodeStyles> are classes implementing these methods.
*
*/
var ExtrasInitializer = {
this.isEnabled() && this.initializePost();
},
initializePost: $.empty,
setAsProperty: $.lambda(false),
isEnabled: function() {
},
var labelContainer = this.labelContainer,
related = e.relatedTarget;
if(group) {
} else {
}
},
return elem;
}
return false;
}
};
var EventsInterface = {
onMouseDown: $.empty,
onMouseMove: $.empty,
onMouseOver: $.empty,
onMouseOut: $.empty,
onMouseWheel: $.empty,
onTouchStart: $.empty,
onTouchMove: $.empty,
onTouchEnd: $.empty,
};
var MouseEventsManager = new Class({
initialize: function(viz) {
this.node = false;
this.edge = false;
this.registeredObjects = [];
this.attachEvents();
},
attachEvents: function() {
that = this;
$.addEvents(htmlCanvas, {
'mouseup': function(e, win) {
},
'mousedown': function(e, win) {
},
'mousemove': function(e, win) {
},
'mouseover': function(e, win) {
},
'mouseout': function(e, win) {
},
'touchstart': function(e, win) {
},
'touchmove': function(e, win) {
},
'touchend': function(e, win) {
}
});
//attach mousewheel event
var handleMouseWheel = function(e, win) {
};
//TODO(nico): this is a horrible check for non-gecko browsers!
} else {
}
},
},
handleEvent: function() {
}
},
makeEventObject: function(e, win) {
var that = this,
return {
pos: false,
node: false,
edge: false,
contains: false,
getNodeCalled: false,
getEdgeCalled: false,
getPos: function() {
//TODO(nico): check why this can't be cache anymore when using edge detection
//if(this.pos) return this.pos;
this.pos = {
};
return this.pos;
},
getNode: function() {
if(this.getNodeCalled) return this.node;
this.getNodeCalled = true;
if(contains) {
}
}
},
getEdge: function() {
if(this.getEdgeCalled) return this.edge;
this.getEdgeCalled = true;
var hashset = {};
if(contains) {
}
}
}
},
getContains: function() {
if(this.getNodeCalled) return this.contains;
this.getNode();
return this.contains;
}
};
}
});
/*
* Provides the initialization function for <NodeStyles> and <Tips> implemented
* by all main visualizations.
*
*/
var Extras = {
initializeExtras: function() {
}
if(obj.setAsProperty()) {
}
});
}
};
/*
Class: Events
This class defines an Event API to be accessed by the user.
The methods implemented are the ones defined in the <Options.Events> object.
*/
initializePost: function() {
this.hovered = false;
this.pressed = false;
this.touched = false;
this.touchMoved = false;
this.moved = false;
},
setAsProperty: $.lambda(true),
if(!this.moved) {
if(isRightClick) {
} else {
}
}
if(this.pressed) {
if(this.moved) {
} else {
}
}
},
//mouseout a label
this.hovered = false;
return;
}
//mouseout canvas
}
if(this.hovered) {
this.hovered = false;
}
},
//mouseover a label
}
},
if(this.pressed) {
this.moved = true;
return;
}
if(this.dom) {
} else {
if(this.hovered) {
if(contains) {
return;
} else {
this.hovered = false;
}
}
} else {
}
}
},
},
if(this.dom) {
}
} else {
}
},
} else {
}
},
if(this.touched) {
this.touchMoved = true;
}
},
if(this.touched) {
if(this.touchMoved) {
} else {
}
this.touched = this.touchMoved = false;
}
}
});
/*
Class: Tips
A class containing tip related functions. This class is used internally.
Used by:
<ST>, <Sunburst>, <Hypertree>, <RGraph>, <TM>, <ForceDirected>, <Icicle>
See also:
<Options.Tips>
*/
initializePost: function() {
//add DOM tooltip
position: 'absolute',
display: 'none',
zIndex: 13000
});
this.node = false;
}
},
setAsProperty: $.lambda(true),
onMouseOut: function(e, win) {
//mouseout a label
this.hide(true);
return;
}
//mouseout canvas
var rt = e.relatedTarget,
}
this.hide(false);
},
onMouseOver: function(e, win) {
//mouseover a label
var label;
}
},
}
if(!this.dom) {
if(!node) {
this.hide(true);
return;
}
}
}
},
setTooltipPosition: function(pos) {
//get window dimensions
var win = {
};
//get tooltip dimensions
var obj = {
};
//set tooltip position
},
hide: function(triggerCallback) {
}
});
/*
Class: NodeStyles
Change node styles when clicking or hovering a node. This class is used internally.
Used by:
<ST>, <Sunburst>, <Hypertree>, <RGraph>, <TM>, <ForceDirected>, <Icicle>
See also:
<Options.NodeStyles>
*/
initializePost: function() {
this.hoveredNode = false;
this.down = false;
this.move = false;
},
onMouseOut: function(e, win) {
if(!this.hoveredNode) return;
//mouseout a label
this.toggleStylesOnHover(this.hoveredNode, false);
}
//mouseout canvas
var rt = e.relatedTarget,
}
this.toggleStylesOnHover(this.hoveredNode, false);
this.hoveredNode = false;
},
onMouseOver: function(e, win) {
//mouseover a label
var label;
this.hoveredNode = node;
this.toggleStylesOnHover(this.hoveredNode, true);
}
},
if(isRightClick) return;
var label;
} else if(!this.dom) {
}
this.move = false;
},
if(isRightClick) return;
if(!this.move) {
}
},
var restoredStyles = {},
}
return restoredStyles;
},
if(this.nodeStylesOnHover) {
}
},
if(this.nodeStylesOnClick) {
}
},
if(set) {
var that = this;
}
for(var s in this['nodeStylesOn' + type]) {
var $s = '$' + s;
}
}
'elements': {
},
duration:300,
fps:40
}, this.config));
} else {
'elements': {
'properties': restoredStyles
},
duration:300,
fps:40
}, this.config));
}
},
if(!node) return;
var nStyles = this.nodeStylesOnClick;
if(!nStyles) return;
//if the node is selected then unselect it
this.toggleStylesOnClick(node, false);
} else {
//unselect all selected nodes...
if(n.selected) {
for(var s in nStyles) {
}
delete n.selected;
}
});
//select clicked node
this.toggleStylesOnClick(node, true);
this.hoveredNode = false;
}
},
//if mouse button is down and moving set move=true
var nStyles = this.nodeStylesOnHover;
if(!nStyles) return;
if(!this.dom) {
if(this.hoveredNode) {
if(contains) return;
}
//if no node is being hovered then just exit
if(!this.hoveredNode && !node) return;
//if the node is hovered then exit
//select hovered node
//check if an animation is running and exit it
//unselect all hovered nodes...
for(var s in nStyles) {
}
delete n.hovered;
}
});
//select hovered node
this.hoveredNode = node;
this.toggleStylesOnHover(node, true);
//check if an animation is running and exit it
//unselect hovered node
this.toggleStylesOnHover(this.hoveredNode, false);
delete this.hoveredNode.hovered;
this.hoveredNode = false;
}
}
}
});
initializePost: function() {
this.pos = false;
this.pressed = false;
},
},
if(this.config.panning == 'avoid nodes' && (this.dom? this.isLabel(e, win) : eventInfo.getNode())) return;
this.pressed = true;
},
if(!this.pressed) return;
if(this.config.panning == 'avoid nodes' && (this.dom? this.isLabel(e, win) : eventInfo.getNode())) return;
currentPos.x *= sx;
currentPos.y *= sy;
currentPos.x += ox;
currentPos.y += oy;
var x = currentPos.x - thispos.x,
y = currentPos.y - thispos.y;
this.pos = currentPos;
},
this.pressed = false;
}
});
/*
* File: Canvas.js
*
*/
/*
Class: Canvas
A canvas widget used by all visualizations. The canvas object can be accessed by doing *viz.canvas*. If you want to
know more about <Canvas> options take a look at <Options.Canvas>.
A canvas widget is a set of DOM elements that wrap the native canvas DOM Element providing a consistent API and behavior
across all browsers. It can also include Elements to add DOM (SVG or HTML) label support to all visualizations.
Example:
Suppose we have this HTML
(start code xml)
<div id="infovis"></div>
(end code)
Now we create a new Visualization
(start code js)
var viz = new $jit.Viz({
//Where to inject the canvas. Any div container will do.
'injectInto':'infovis',
//width and height for canvas.
//Default's to the container offsetWidth and Height.
'width': 900,
'height':500
});
(end code)
The generated HTML will look like this
(start code xml)
<div id="infovis">
<div id="infovis-canvaswidget" style="position:relative;">
<canvas id="infovis-canvas" width=900 height=500
style="position:absolute; top:0; left:0; width:900px; height:500px;" />
<div id="infovis-label"
style="overflow:visible; position:absolute; top:0; left:0; width:900px; height:0px">
</div>
</div>
</div>
(end code)
As you can see, the generated HTML consists of a canvas DOM Element of id *infovis-canvas* and a div label container
of id *infovis-label*, wrapped in a main div container of id *infovis-canvaswidget*.
*/
var Canvas;
(function() {
//check for native canvas support
var canvasType = typeof HTMLCanvasElement,
//create element function
for(var p in props) {
if(typeof props[p] == "object") {
} else {
}
}
}
return elem;
}
//canvas widget which we will call just Canvas
canvases: [],
pos: false,
element: false,
labelContainer: false,
translateOffsetX: 0,
translateOffsetY: 0,
scaleOffsetX: 1,
scaleOffsetY: 1,
//canvas options
var canvasOptions = {
injectInto: id,
};
//create main wrapper
'style': {
'position': 'relative',
}
});
//create label container
//create primary canvas
},
resize: function() {
}
}));
//create secondary canvas
if(back) {
}
//insert canvases
while(len--) {
if(len > 0) {
}
}
//Update canvas position when the page is scrolled.
timer = setTimeout(function() {
}, 500);
});
},
/*
Method: getCtx
Returns the main canvas context object
Example:
(start code js)
var ctx = canvas.getCtx();
//Now I can use the native canvas context
//and for example change some canvas styles
ctx.globalAlpha = 1;
(end code)
*/
getCtx: function(i) {
},
/*
Method: getConfig
Returns the current Configuration for this Canvas Widget.
Example:
(start code js)
var config = canvas.getConfig();
(end code)
*/
getConfig: function() {
return this.opt;
},
/*
Method: getElement
Returns the main Canvas DOM wrapper
Example:
(start code js)
var wrapper = canvas.getElement();
//Returns <div id="infovis-canvaswidget" ... >...</div> as element
(end code)
*/
getElement: function() {
return this.element;
},
/*
Method: getSize
Returns canvas dimensions.
Returns:
An object with *width* and *height* properties.
Example:
(start code js)
canvas.getSize(); //returns { width: 900, height: 500 }
(end code)
*/
getSize: function(i) {
},
/*
Method: resize
Resizes the canvas.
Parameters:
width - New canvas width.
height - New canvas height.
Example:
(start code js)
canvas.resize(width, height);
(end code)
*/
this.getPos(true);
}
if(this.labelContainer)
},
/*
Method: translate
Applies a translation to the canvas.
Parameters:
x - (number) x offset.
y - (number) y offset.
disablePlot - (boolean) Default's *false*. Set this to *true* if you don't want to refresh the visualization.
Example:
(start code js)
canvas.translate(30, 30);
(end code)
*/
translate: function(x, y, disablePlot) {
this.translateOffsetX += x*this.scaleOffsetX;
this.translateOffsetY += y*this.scaleOffsetY;
}
},
/*
Method: scale
Scales the canvas.
Parameters:
x - (number) scale value.
y - (number) scale value.
disablePlot - (boolean) Default's *false*. Set this to *true* if you don't want to refresh the visualization.
Example:
(start code js)
canvas.scale(0.5, 0.5);
(end code)
*/
scale: function(x, y, disablePlot) {
var px = this.scaleOffsetX * x,
py = this.scaleOffsetY * y;
this.scaleOffsetX = px;
this.scaleOffsetY = py;
}
},
/*
Method: getPos
Returns the canvas position as an *x, y* object.
Parameters:
force - (boolean) Default's *false*. Set this to *true* if you want to recalculate the position without using any cache information.
Returns:
An object with *x* and *y* properties.
Example:
(start code js)
canvas.getPos(true); //returns { x: 900, y: 500 }
(end code)
*/
}
return this.pos;
},
/*
Method: clear
Clears the canvas.
*/
clear: function(i){
},
},
var NS = 'http://www.w3.org/2000/svg';
return $E('div', {
'id': idLabel,
'style': {
'overflow': 'visible',
'position': 'absolute',
'top': 0,
'left': 0,
'height': 0
}
});
} else if(type == 'SVG') {
return svgContainer;
}
}
});
//base canvas wrapper
translateOffsetX: 0,
translateOffsetY: 0,
scaleOffsetX: 1,
scaleOffsetY: 1,
initialize: function(viz) {
this.size = false;
this.createCanvas();
this.translateToCenter();
},
createCanvas: function() {
'width': width,
'height': height,
'style': {
'position': 'absolute',
'top': 0,
'left': 0,
}
});
},
getCtx: function() {
if(!this.ctx)
return this.ctx;
},
getSize: function() {
return this.size = {
};
},
translateToCenter: function(ps) {
},
this.size = false;
//small ExCanvas fix
if(!supportsCanvas) {
this.translateToCenter(size);
} else {
this.translateToCenter();
}
this.translateOffsetX =
this.translateOffsetY = 0;
this.scaleOffsetX =
this.scaleOffsetY = 1;
this.clear();
},
translate: function(x, y, disablePlot) {
var sx = this.scaleOffsetX,
sy = this.scaleOffsetY;
this.translateOffsetX += x*sx;
this.translateOffsetY += y*sy;
!disablePlot && this.plot();
},
scale: function(x, y, disablePlot) {
this.scaleOffsetX *= x;
this.scaleOffsetY *= y;
!disablePlot && this.plot();
},
clear: function(){
ox = this.translateOffsetX,
oy = this.translateOffsetY,
sx = this.scaleOffsetX,
sy = this.scaleOffsetY;
},
plot: function() {
this.clear();
}
});
//background canvases
//TODO(nico): document this!
Canvas.Background = {};
idSuffix: '-bkcanvas',
levelDistance: 100,
numberOfCircles: 6,
CanvasStyles: {},
offset: 0
}, options);
},
},
//set canvas styles
var n = conf.numberOfCircles,
for(var i=1; i<=n; i++) {
}
//TODO(nico): print labels too!
}
});
})();
/*
* File: Polar.js
*
* Defines the <Polar> class.
*
* Description:
*
* The <Polar> class, just like the <Complex> class, is used by the <Hypertree>, <ST> and <RGraph> as a 2D point representation.
*
* See also:
*
*
*/
/*
Class: Polar
A multi purpose polar representation.
Description:
The <Polar> class, just like the <Complex> class, is used by the <Hypertree>, <ST> and <RGraph> as a 2D point representation.
See also:
Parameters:
theta - An angle.
rho - The norm.
*/
};
/*
Method: getc
Returns a complex number.
Parameters:
simple - _optional_ If *true*, this method will return only an object holding x and y properties and not a <Complex> instance. Default's *false*.
Returns:
A complex number.
*/
},
/*
Method: getp
Returns a <Polar> representation.
Returns:
A variable in polar coordinates.
*/
getp: function() {
return this;
},
/*
Method: set
Sets a number.
Parameters:
v - A <Complex> or <Polar> instance.
*/
set: function(v) {
v = v.getp();
},
/*
Method: setc
Sets a <Complex> number.
Parameters:
x - A <Complex> number real part.
y - A <Complex> number imaginary part.
*/
setc: function(x, y) {
},
/*
Method: setp
Sets a polar number.
Parameters:
theta - A <Polar> number angle property.
rho - A <Polar> number rho property.
*/
},
/*
Method: clone
Returns a copy of the current object.
Returns:
A copy of the real object.
*/
clone: function() {
},
/*
Method: toComplex
Translates from polar to cartesian coordinates and returns a new <Complex> instance.
Parameters:
simple - _optional_ If *true* this method will only return an object with x and y properties (and not the whole <Complex> instance). Default's *false*.
Returns:
A new <Complex> instance.
*/
return new Complex(x, y);
},
/*
Method: add
Adds two <Polar> instances.
Parameters:
polar - A <Polar> number.
Returns:
A new Polar instance.
*/
},
/*
Method: scale
Scales a polar norm.
Parameters:
number - A scale factor.
Returns:
A new Polar instance.
*/
},
/*
Method: equals
Comparison method.
Returns *true* if the theta and rho properties are equal.
Parameters:
c - A <Polar> number.
Returns:
*true* if the theta and rho parameters for these objects are equal. *false* otherwise.
*/
equals: function(c) {
},
/*
Method: $add
Adds two <Polar> instances affecting the current object.
Paramters:
polar - A <Polar> instance.
Returns:
The changed object.
*/
return this;
},
/*
Method: $madd
Adds two <Polar> instances affecting the current object. The resulting theta angle is modulo 2pi.
Parameters:
polar - A <Polar> instance.
Returns:
The changed object.
*/
return this;
},
/*
Method: $scale
Scales a polar instance affecting the object.
Parameters:
number - A scaling factor.
Returns:
The changed object.
*/
return this;
},
/*
Method: isZero
Returns *true* if the number is zero.
*/
isZero: function () {
},
/*
Method: interpolate
Calculates a polar interpolation between two points at a given delta moment.
Parameters:
elem - A <Polar> instance.
delta - A delta factor ranging [0, 1].
Returns:
A new <Polar> instance representing an interpolation between _this_ and _elem_
*/
var ch = function(t) {
return a;
};
} else {
}
} else {
}
} else {
}
return {
'theta': sum,
'rho': r
};
}
};
/*
* File: Complex.js
*
* Defines the <Complex> class.
*
* Description:
*
* The <Complex> class, just like the <Polar> class, is used by the <Hypertree>, <ST> and <RGraph> as a 2D point representation.
*
* See also:
*
*
*/
/*
Class: Complex
A multi-purpose Complex Class with common methods.
Description:
The <Complex> class, just like the <Polar> class, is used by the <Hypertree>, <ST> and <RGraph> as a 2D point representation.
See also:
Parameters:
x - _optional_ A Complex number real part.
y - _optional_ A Complex number imaginary part.
*/
var Complex = function(x, y) {
this.x = x || 0;
this.y = y || 0;
};
/*
Method: getc
Returns a complex number.
Returns:
A complex number.
*/
getc: function() {
return this;
},
/*
Method: getp
Returns a <Polar> representation of this number.
Parameters:
simple - _optional_ If *true*, this method will return only an object holding theta and rho properties and not a <Polar> instance. Default's *false*.
Returns:
A variable in <Polar> coordinates.
*/
},
/*
Method: set
Sets a number.
Parameters:
c - A <Complex> or <Polar> instance.
*/
set: function(c) {
c = c.getc(true);
this.x = c.x;
this.y = c.y;
},
/*
Method: setc
Sets a complex number.
Parameters:
x - A <Complex> number Real part.
y - A <Complex> number Imaginary part.
*/
setc: function(x, y) {
this.x = x;
this.y = y;
},
/*
Method: setp
Sets a polar number.
Parameters:
theta - A <Polar> number theta property.
rho - A <Polar> number rho property.
*/
},
/*
Method: clone
Returns a copy of the current object.
Returns:
A copy of the real object.
*/
clone: function() {
return new Complex(this.x, this.y);
},
/*
Method: toPolar
Transforms cartesian to polar coordinates.
Parameters:
simple - _optional_ If *true* this method will only return an object with theta and rho properties (and not the whole <Polar> instance). Default's *false*.
Returns:
A new <Polar> instance.
*/
},
/*
Method: norm
Calculates a <Complex> number norm.
Returns:
A real number representing the complex norm.
*/
norm: function () {
return Math.sqrt(this.squaredNorm());
},
/*
Method: squaredNorm
Calculates a <Complex> number squared norm.
Returns:
A real number representing the complex squared norm.
*/
squaredNorm: function () {
return this.x*this.x + this.y*this.y;
},
/*
Method: add
Returns the result of adding two complex numbers.
Does not alter the original object.
Parameters:
pos - A <Complex> instance.
Returns:
The result of adding two complex numbers.
*/
},
/*
Method: prod
Returns the result of multiplying two <Complex> numbers.
Does not alter the original object.
Parameters:
pos - A <Complex> instance.
Returns:
The result of multiplying two complex numbers.
*/
},
/*
Method: conjugate
Returns the conjugate of this <Complex> number.
Does not alter the original object.
Returns:
The conjugate of this <Complex> number.
*/
conjugate: function() {
return new Complex(this.x, -this.y);
},
/*
Method: scale
Returns the result of scaling a <Complex> instance.
Does not alter the original object.
Parameters:
factor - A scale factor.
Returns:
The result of scaling this complex to a factor.
*/
},
/*
Method: equals
Comparison method.
Returns *true* if both real and imaginary parts are equal.
Parameters:
c - A <Complex> instance.
Returns:
A boolean instance indicating if both <Complex> numbers are equal.
*/
equals: function(c) {
return this.x == c.x && this.y == c.y;
},
/*
Method: $add
Returns the result of adding two <Complex> numbers.
Alters the original object.
Parameters:
pos - A <Complex> instance.
Returns:
The result of adding two complex numbers.
*/
return this;
},
/*
Method: $prod
Returns the result of multiplying two <Complex> numbers.
Alters the original object.
Parameters:
pos - A <Complex> instance.
Returns:
The result of multiplying two complex numbers.
*/
var x = this.x, y = this.y;
return this;
},
/*
Method: $conjugate
Returns the conjugate for this <Complex>.
Alters the original object.
Returns:
The conjugate for this complex.
*/
$conjugate: function() {
this.y = -this.y;
return this;
},
/*
Method: $scale
Returns the result of scaling a <Complex> instance.
Alters the original object.
Parameters:
factor - A scale factor.
Returns:
The result of scaling this complex to a factor.
*/
return this;
},
/*
Method: $div
Returns the division of two <Complex> numbers.
Alters the original object.
Parameters:
pos - A <Complex> number.
Returns:
The result of scaling this complex to a factor.
*/
var x = this.x, y = this.y;
},
/*
Method: isZero
Returns *true* if the number is zero.
*/
isZero: function () {
}
};
/*
* File: Graph.js
*
*/
/*
Class: Graph
A Graph Class that provides useful manipulation functions. You can find more manipulation methods in the <Graph.Util> object.
An instance of this class can be accessed by using the *graph* parameter of any tree or graph visualization.
Example:
(start code js)
//create new visualization
var viz = new $jit.Viz(options);
//load JSON data
viz.loadJSON(json);
//access model
viz.graph; //<Graph> instance
(end code)
Implements:
The following <Graph.Util> methods are implemented in <Graph>
- <Graph.Util.getNode>
- <Graph.Util.eachNode>
- <Graph.Util.computeLevels>
- <Graph.Util.eachBFS>
- <Graph.Util.clean>
- <Graph.Util.getClosestNodeToPos>
- <Graph.Util.getClosestNodeToOrigin>
*/
var innerOptions = {
'klass': Complex,
'Node': {}
};
this.nodes = {};
this.edges = {};
//add nodeList methods
var that = this;
this.nodeList = {};
for(var p in Accessors) {
return function() {
});
};
})(p);
}
},
/*
Method: getNode
Returns a <Graph.Node> by *id*.
Parameters:
id - (string) A <Graph.Node> id.
Example:
(start code js)
var node = graph.getNode('nodeId');
(end code)
*/
return false;
},
/*
Method: get
An alias for <Graph.Util.getNode>. Returns a node by *id*.
Parameters:
id - (string) A <Graph.Node> id.
Example:
(start code js)
var node = graph.get('nodeId');
(end code)
*/
},
/*
Method: getByName
Returns a <Graph.Node> by *name*.
Parameters:
name - (string) A <Graph.Node> name.
Example:
(start code js)
var node = graph.getByName('someName');
(end code)
*/
}
return false;
},
/*
Method: getAdjacence
Returns a <Graph.Adjacence> object connecting nodes with ids *id* and *id2*.
Parameters:
id - (string) A <Graph.Node> id.
id2 - (string) A <Graph.Node> id.
*/
}
return false;
},
/*
Method: addNode
Adds a node.
Parameters:
obj - An object with the properties described below
id - (string) A node id
name - (string) A node's name
data - (object) A node's data hash
See also:
<Graph.Node>
*/
'adjacencies': edges
this.Node,
this.Edge,
this.Label);
}
},
/*
Method: addAdjacence
Connects nodes specified by *obj* and *obj2*. If not found, nodes are created.
Parameters:
obj - (object) A <Graph.Node> object.
obj2 - (object) Another <Graph.Node> object.
data - (object) A data object. Used to store some extra information in the <Graph.Adjacence> object created.
See also:
<Graph.Node>, <Graph.Adjacence>
*/
}
},
/*
Method: removeNode
Removes a <Graph.Node> matching the specified *id*.
Parameters:
id - (string) A node's id.
*/
removeNode: function(id) {
}
}
},
/*
Method: removeAdjacence
Removes a <Graph.Adjacence> matching *id1* and *id2*.
Parameters:
id1 - (string) A <Graph.Node> id.
id2 - (string) A <Graph.Node> id.
*/
},
/*
Method: hasNode
Returns a boolean indicating if the node belongs to the <Graph> or not.
Parameters:
id - (string) Node id.
*/
},
/*
Method: empty
Empties the Graph
*/
});
/*
Object: Accessors
Defines a set of methods for data, canvas and label styles manipulation implemented by <Graph.Node> and <Graph.Adjacence> instances.
*/
var Accessors;
(function () {
var data;
if(type == 'current') {
} else if(type == 'start') {
} else if(type == 'end') {
}
if(force) {
}
if(!this.Config.overridable)
}
var data;
if(type == 'current') {
} else if(type == 'start') {
} else if(type == 'end') {
}
}
var that = this;
});
}
Accessors = {
/*
Method: getData
Returns the specified data value property.
(i.e dollar prefixed properties).
Parameters:
prop - (string) The name of the property. The dollar sign is not needed. For
example *getData(width)* will return *data.$width*.
type - (string) The type of the data property queried. Default's "current". You can access *start* and *end*
data properties also. These properties are used when making animations.
force - (boolean) Whether to obtain the true value of the property (equivalent to
*data.$prop*) or to check for *node.overridable = true* first.
Returns:
value if *overridable=false*
Example:
(start code js)
node.getData('width'); //will return node.data.$width if Node.overridable=true;
(end code)
*/
},
/*
Method: setData
Sets the current data property with some specific value.
This method is only useful for reserved (dollar prefixed) properties.
Parameters:
prop - (string) The name of the property. The dollar sign is not necessary. For
example *setData(width)* will set *data.$width*.
value - (mixed) The value to store.
type - (string) The type of the data property to store. Default's "current" but
can also be "start" or "end".
Example:
(start code js)
node.setData('width', 30);
(end code)
(start code js)
var node = viz.getNode('nodeId');
//set start and end values
node.setData('width', 10, 'start');
node.setData('width', 30, 'end');
//will animate nodes width property
viz.fx.animate({
modes: ['node-property:width'],
duration: 1000
});
(end code)
*/
},
/*
Method: setDataset
Convenience method to set multiple data values at once.
Parameters:
types - (array|string) A set of 'current', 'end' or 'start' values.
obj - (object) A hash containing the names and values of the properties to be altered.
Example:
(start code js)
node.setDataset(['current', 'end'], {
'width': [100, 5],
'color': ['#fff', '#ccc']
});
//...or also
node.setDataset('end', {
'width': 5,
'color': '#ccc'
});
(end code)
See also:
<Accessors.setData>
*/
}
}
},
/*
Method: removeData
Remove data properties.
Parameters:
One or more property names as arguments. The dollar sign is not needed.
Example:
(start code js)
node.removeData('width'); //now the default width value is returned
(end code)
*/
removeData: function() {
},
/*
Method: getCanvasStyle
Returns the specified canvas style data value property. This is useful for
dollar prefixed properties that match with $canvas-<name of canvas style>).
Parameters:
prop - (string) The name of the property. The dollar sign is not needed. For
example *getCanvasStyle(shadowBlur)* will return *data[$canvas-shadowBlur]*.
type - (string) The type of the data property queried. Default's *current*. You can access *start* and *end*
data properties also.
Example:
(start code js)
node.getCanvasStyle('shadowBlur');
(end code)
See also:
<Accessors.getData>
*/
return getDataInternal.call(
},
/*
Method: setCanvasStyle
Sets the canvas style data property with some specific value.
This method is only useful for reserved (dollar prefixed) properties.
Parameters:
prop - (string) Name of the property. Can be any canvas property like 'shadowBlur', 'shadowColor', 'strokeStyle', etc.
value - (mixed) The value to set to the property.
type - (string) Default's *current*. Whether to set *start*, *current* or *end* type properties.
Example:
(start code js)
node.setCanvasStyle('shadowBlur', 30);
(end code)
(start code js)
var node = viz.getNode('nodeId');
//set start and end values
node.setCanvasStyle('shadowBlur', 10, 'start');
node.setCanvasStyle('shadowBlur', 30, 'end');
//will animate nodes canvas style property for nodes
viz.fx.animate({
modes: ['node-style:shadowBlur'],
duration: 1000
});
(end code)
See also:
<Accessors.setData>.
*/
},
/*
Method: setCanvasStyles
Convenience method to set multiple styles at once.
Parameters:
types - (array|string) A set of 'current', 'end' or 'start' values.
obj - (object) A hash containing the names and values of the properties to be altered.
See also:
<Accessors.setDataset>.
*/
}
}
},
/*
Method: removeCanvasStyle
Remove canvas style properties from data.
Parameters:
A variable number of canvas style strings.
See also:
<Accessors.removeData>.
*/
removeCanvasStyle: function() {
},
/*
Method: getLabelData
Returns the specified label data value property. This is useful for
dollar prefixed properties that match with $label-<name of label style>).
Parameters:
prop - (string) The name of the property. The dollar sign prefix is not needed. For
example *getLabelData(size)* will return *data[$label-size]*.
type - (string) The type of the data property queried. Default's *current*. You can access *start* and *end*
data properties also.
See also:
<Accessors.getData>.
*/
return getDataInternal.call(
},
/*
Method: setLabelData
Sets the current label data with some specific value.
This method is only useful for reserved (dollar prefixed) properties.
Parameters:
prop - (string) Name of the property. Can be any canvas property like 'shadowBlur', 'shadowColor', 'strokeStyle', etc.
value - (mixed) The value to set to the property.
type - (string) Default's *current*. Whether to set *start*, *current* or *end* type properties.
Example:
(start code js)
node.setLabelData('size', 30);
(end code)
If we were to make an animation of a node label size then we could do
(start code js)
var node = viz.getNode('nodeId');
//set start and end values
node.setLabelData('size', 10, 'start');
node.setLabelData('size', 30, 'end');
//will animate nodes label size
viz.fx.animate({
modes: ['label-property:size'],
duration: 1000
});
(end code)
See also:
<Accessors.setData>.
*/
},
/*
Method: setLabelDataset
Convenience function to set multiple label data at once.
Parameters:
types - (array|string) A set of 'current', 'end' or 'start' values.
obj - (object) A hash containing the names and values of the properties to be altered.
See also:
<Accessors.setDataset>.
*/
}
}
},
/*
Method: removeLabelData
Remove label properties from data.
Parameters:
A variable number of label property strings.
See also:
<Accessors.removeData>.
*/
removeLabelData: function() {
}
};
})();
/*
Class: Graph.Node
A <Graph> node.
Implements:
<Accessors> methods.
The following <Graph.Util> methods are implemented by <Graph.Node>
- <Graph.Util.eachAdjacency>
- <Graph.Util.eachLevel>
- <Graph.Util.eachSubgraph>
- <Graph.Util.eachSubnode>
- <Graph.Util.anySubnode>
- <Graph.Util.getSubnodes>
- <Graph.Util.getParents>
- <Graph.Util.isDescendantOf>
*/
var innerOptions = {
'id': '',
'name': '',
'data': {},
'startData': {},
'endData': {},
'adjacencies': {},
'selected': false,
'drawn': false,
'exist': false,
'angleSpan': {
'begin': 0,
'end' : 0
},
'pos': new klass,
'startPos': new klass,
'endPos': new klass
};
},
/*
Method: adjacentTo
Indicates if the node is adjacent to the node specified by id
Parameters:
id - (string) A node id.
Example:
(start code js)
node.adjacentTo('nodeId') == true;
(end code)
*/
adjacentTo: function(node) {
},
/*
Method: getAdjacency
Returns a <Graph.Adjacence> object connecting the current <Graph.Node> and the node having *id* as id.
Parameters:
id - (string) A node id.
*/
getAdjacency: function(id) {
return this.adjacencies[id];
},
/*
Method: getPos
Returns the position of the node.
Parameters:
type - (string) Default's *current*. Possible values are "start", "end" or "current".
Returns:
A <Complex> or <Polar> instance.
Example:
(start code js)
var pos = node.getPos('end');
(end code)
*/
if(type == "current") {
return this.pos;
} else if(type == "end") {
return this.endPos;
} else if(type == "start") {
return this.startPos;
}
},
/*
Method: setPos
Sets the node's position.
Parameters:
value - (object) A <Complex> or <Polar> instance.
type - (string) Default's *current*. Possible values are "start", "end" or "current".
Example:
(start code js)
node.setPos(new $jit.Complex(0, 0), 'end');
(end code)
*/
var pos;
if(type == "current") {
} else if(type == "end") {
} else if(type == "start") {
}
}
});
/*
Class: Graph.Adjacence
A <Graph> adjacence (or edge) connecting two <Graph.Nodes>.
Implements:
<Accessors> methods.
See also:
<Graph>, <Graph.Node>
Properties:
nodeFrom - A <Graph.Node> connected by this edge.
nodeTo - Another <Graph.Node> connected by this edge.
data - Node data property containing a hash (i.e {}) with custom options.
*/
this.startData = {};
this.endData = {};
}
});
/*
Object: Graph.Util
<Graph> traversal and processing utility object.
Note:
For your convenience some of these methods have also been appended to <Graph> and <Graph.Node> classes.
*/
/*
filter
For internal use only. Provides a filtering function based on flags.
*/
return function(elem) {
return false;
}
}
return true;
};
},
/*
Method: getNode
Returns a <Graph.Node> by *id*.
Also implemented by:
<Graph>
Parameters:
graph - (object) A <Graph> instance.
id - (string) A <Graph.Node> id.
Example:
(start code js)
$jit.Graph.Util.getNode(graph, 'nodeid');
//or...
graph.getNode('nodeid');
(end code)
*/
},
/*
Method: eachNode
Iterates over <Graph> nodes performing an *action*.
Also implemented by:
<Graph>.
Parameters:
graph - (object) A <Graph> instance.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.eachNode(graph, function(node) {
alert(node.name);
});
//or...
graph.eachNode(function(node) {
alert(node.name);
});
(end code)
*/
}
},
/*
Method: each
Iterates over <Graph> nodes performing an *action*. It's an alias for <Graph.Util.eachNode>.
Also implemented by:
<Graph>.
Parameters:
graph - (object) A <Graph> instance.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.each(graph, function(node) {
alert(node.name);
});
//or...
graph.each(function(node) {
alert(node.name);
});
(end code)
*/
},
/*
Method: eachAdjacency
Iterates over <Graph.Node> adjacencies applying the *action* function.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
action - (function) A callback function having <Graph.Adjacence> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.eachAdjacency(node, function(adj) {
alert(adj.nodeTo.name);
});
//or...
node.eachAdjacency(function(adj) {
alert(adj.nodeTo.name);
});
(end code)
*/
if(filter(a)) {
}
}
}
},
/*
Method: computeLevels
Performs a BFS traversal setting the correct depth for each node.
Also implemented by:
<Graph>.
Note:
The depth of each node can then be accessed by
>node._depth
Parameters:
graph - (object) A <Graph>.
id - (string) A starting node id for the BFS traversal.
startDepth - (optional|number) A minimum depth value. Default's 0.
*/
}, flags);
}
}, flags);
}
},
/*
Method: eachBFS
Performs a BFS traversal applying *action* to each <Graph.Node>.
Also implemented by:
<Graph>.
Parameters:
graph - (object) A <Graph>.
id - (string) A starting node id for the BFS traversal.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.eachBFS(graph, 'mynodeid', function(node) {
alert(node.name);
});
//or...
graph.eachBFS('mynodeid', function(node) {
alert(node.name);
});
(end code)
*/
n._flag = true;
}
}, flags);
}
},
/*
Method: eachLevel
Iterates over a node's subgraph applying *action* to the nodes of relative depth between *levelBegin* and *levelEnd*.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
levelBegin - (number) A relative level value.
levelEnd - (number) A relative level value.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
*/
if(d < levelEnd) {
});
}
},
/*
Method: eachSubgraph
Iterates over a node's children recursively.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.eachSubgraph(node, function(node) {
alert(node.name);
});
//or...
node.eachSubgraph(function(node) {
alert(node.name);
});
(end code)
*/
},
/*
Method: eachSubnode
Iterates over a node's children (without deeper recursion).
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
action - (function) A callback function having a <Graph.Node> as first formal parameter.
Example:
(start code js)
$jit.Graph.Util.eachSubnode(node, function(node) {
alert(node.name);
});
//or...
node.eachSubnode(function(node) {
alert(node.name);
});
(end code)
*/
},
/*
Method: anySubnode
Returns *true* if any subnode matches the given condition.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
cond - (function) A callback function returning a Boolean instance. This function has as first formal parameter a <Graph.Node>.
Example:
(start code js)
$jit.Graph.Util.anySubnode(node, function(node) { return node.name == "mynodename"; });
//or...
node.anySubnode(function(node) { return node.name == 'mynodename'; });
(end code)
*/
var flag = false;
}, flags);
return flag;
},
/*
Method: getSubnodes
Collects all subnodes for a specified node.
The *level* parameter filters nodes having relative depth of *level* from the root node.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
level - (optional|number) Default's *0*. A starting relative depth for collecting nodes.
Returns:
An array of nodes.
*/
var levelStart, levelEnd;
} else {
levelStart = level;
}
}, flags);
return ans;
},
/*
Method: getParents
Returns an Array of <Graph.Nodes> which are parents of the given node.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
Returns:
An Array of <Graph.Nodes>.
Example:
(start code js)
var pars = $jit.Graph.Util.getParents(node);
//or...
var pars = node.getParents();
if(pars.length > 0) {
//do stuff with parents
}
(end code)
*/
getParents: function(node) {
var ans = [];
});
return ans;
},
/*
Method: isDescendantOf
Returns a boolean indicating if some node is descendant of the node with the given id.
Also implemented by:
<Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
id - (string) A <Graph.Node> id.
Example:
(start code js)
$jit.Graph.Util.isDescendantOf(node, "nodeid"); //true|false
//or...
node.isDescendantOf('nodeid');//true|false
(end code)
*/
}
return ans;
},
/*
Method: clean
Cleans flags from nodes.
Also implemented by:
<Graph>.
Parameters:
graph - A <Graph> instance.
*/
/*
Method: getClosestNodeToOrigin
Returns the closest node to the center of canvas.
Also implemented by:
<Graph>.
Parameters:
graph - (object) A <Graph> instance.
prop - (optional|string) Default's 'current'. A <Graph.Node> position property. Possible properties are 'start', 'current' or 'end'.
*/
},
/*
Method: getClosestNodeToPos
Returns the closest node to the given position.
Also implemented by:
<Graph>.
Parameters:
graph - (object) A <Graph> instance.
pos - (object) A <Complex> or <Polar> instance.
prop - (optional|string) Default's *current*. A <Graph.Node> position property. Possible properties are 'start', 'current' or 'end'.
*/
var node = null;
var distance = function(a, b) {
};
}, flags);
return node;
}
};
//Append graph methods to <Graph>
$.each(['get', 'getNode', 'each', 'eachNode', 'computeLevels', 'eachBFS', 'clean', 'getClosestNodeToPos', 'getClosestNodeToOrigin'], function(m) {
};
});
//Append node methods to <Graph.Node>
$.each(['eachAdjacency', 'eachLevel', 'eachSubgraph', 'eachSubnode', 'anySubnode', 'getSubnodes', 'getParents', 'isDescendantOf'], function(m) {
};
});
/*
* File: Graph.Op.js
*
*/
/*
Object: Graph.Op
morphing a <Graph> into another <Graph>, contracting or expanding subtrees, etc.
*/
options: {
type: 'nothing',
duration: 2000,
hideLabels: true,
fps:30
},
initialize: function(viz) {
},
/*
Method: removeNode
Removes one or more <Graph.Nodes> from the visualization.
It can also perform several animations like fading sequentially, fading concurrently, iterating or replotting.
Parameters:
node - (string|array) The node's id. Can also be an array having many ids.
opt - (object) Animation options. It's an object with optional properties described below
type - (string) Default's *nothing*. Type of the animation. Can be "nothing", "replot", "fade:seq", "fade:con" or "iter".
duration - Described in <Options.Fx>.
fps - Described in <Options.Fx>.
transition - Described in <Options.Fx>.
hideLabels - (boolean) Default's *true*. Hide labels during the animation.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.op.removeNode('nodeId', {
type: 'fade:seq',
duration: 1000,
hideLabels: false,
transition: $jit.Trans.Quart.easeOut
});
//or also
viz.op.removeNode(['someId', 'otherId'], {
type: 'fade:con',
duration: 1500
});
(end code)
*/
case 'nothing':
break;
case 'replot':
break;
case 'fade:seq': case 'fade':
that = this;
//set alpha to 0 for nodes to remove.
for(i=0; i<n.length; i++) {
}
modes: ['node-property:alpha'],
onComplete: function() {
viz.reposition();
modes: ['linear']
}));
}
}));
break;
case 'fade:con':
that = this;
//set alpha to 0 for nodes to remove. Tag them for being ignored on computing positions.
for(i=0; i<n.length; i++) {
}
viz.reposition();
onComplete: function() {
}
}));
break;
case 'iter':
that = this;
});
break;
default: this.doError();
}
},
/*
Method: removeEdge
Removes one or more <Graph.Adjacences> from the visualization.
It can also perform several animations like fading sequentially, fading concurrently, iterating or replotting.
Parameters:
vertex - (array) An array having two strings which are the ids of the nodes connected by this edge (i.e ['id1', 'id2']). Can also be a two dimensional array holding many edges (i.e [['id1', 'id2'], ['id3', 'id4'], ...]).
opt - (object) Animation options. It's an object with optional properties described below
type - (string) Default's *nothing*. Type of the animation. Can be "nothing", "replot", "fade:seq", "fade:con" or "iter".
duration - Described in <Options.Fx>.
fps - Described in <Options.Fx>.
transition - Described in <Options.Fx>.
hideLabels - (boolean) Default's *true*. Hide labels during the animation.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.op.removeEdge(['nodeId', 'otherId'], {
type: 'fade:seq',
duration: 1000,
hideLabels: false,
transition: $jit.Trans.Quart.easeOut
});
//or also
viz.op.removeEdge([['someId', 'otherId'], ['id3', 'id4']], {
type: 'fade:con',
duration: 1500
});
(end code)
*/
case 'nothing':
break;
case 'replot':
break;
case 'fade:seq': case 'fade':
that = this;
//set alpha to 0 for edges to remove.
for(i=0; i<v.length; i++) {
if(adj) {
}
}
modes: ['edge-property:alpha'],
onComplete: function() {
viz.reposition();
modes: ['linear']
}));
}
}));
break;
case 'fade:con':
that = this;
//set alpha to 0 for nodes to remove. Tag them for being ignored when computing positions.
for(i=0; i<v.length; i++) {
if(adj) {
}
}
viz.reposition();
onComplete: function() {
}
}));
break;
case 'iter':
that = this;
});
break;
default: this.doError();
}
},
/*
Method: sum
Adds a new graph to the visualization.
The JSON graph (or tree) must at least have a common node with the current graph plotted by the visualization.
The resulting graph can be defined as follows <http://mathworld.wolfram.com/GraphSum.html>
Parameters:
json - (object) A json tree or graph structure. See also <Loader.loadJSON>.
opt - (object) Animation options. It's an object with optional properties described below
type - (string) Default's *nothing*. Type of the animation. Can be "nothing", "replot", "fade:seq", "fade:con".
duration - Described in <Options.Fx>.
fps - Described in <Options.Fx>.
transition - Described in <Options.Fx>.
hideLabels - (boolean) Default's *true*. Hide labels during the animation.
Example:
(start code js)
//...json contains a tree or graph structure...
var viz = new $jit.Viz(options);
viz.op.sum(json, {
type: 'fade:seq',
duration: 1000,
hideLabels: false,
transition: $jit.Trans.Quart.easeOut
});
//or also
viz.op.sum(json, {
type: 'fade:con',
duration: 1500
});
(end code)
*/
var graph;
case 'nothing':
});
});
break;
case 'replot':
break;
case 'fade:seq': case 'fade': case 'fade:con':
that = this;
//set alpha to 0 for nodes to add.
viz.reposition();
modes: ['linear'],
onComplete: function() {
onComplete: function() {
}
}));
}
}));
} else {
}
});
}));
}
break;
default: this.doError();
}
},
/*
Method: morph
This method will transform the current visualized graph into the new JSON representation passed in the method.
The JSON object must at least have the root node in common with the current visualized graph.
Parameters:
json - (object) A json tree or graph structure. See also <Loader.loadJSON>.
opt - (object) Animation options. It's an object with optional properties described below
type - (string) Default's *nothing*. Type of the animation. Can be "nothing", "replot", "fade:con".
duration - Described in <Options.Fx>.
fps - Described in <Options.Fx>.
transition - Described in <Options.Fx>.
hideLabels - (boolean) Default's *true*. Hide labels during the animation.
id - (string) The shared <Graph.Node> id between both graphs.
extraModes - (optional|object) When morphing with an animation, dollar prefixed data parameters are added to
*endData* and not *data* itself. This way you can animate dollar prefixed parameters during your morphing operation.
For animating these extra-parameters you have to specify an object that has animation groups as keys and animation
properties as values, just like specified in <Graph.Plot.animate>.
Example:
(start code js)
//...json contains a tree or graph structure...
var viz = new $jit.Viz(options);
viz.op.morph(json, {
type: 'fade',
duration: 1000,
hideLabels: false,
transition: $jit.Trans.Quart.easeOut
});
//or also
viz.op.morph(json, {
type: 'fade',
duration: 1500
});
//if the json data contains dollar prefixed params
//like $width or $height these too can be animated
viz.op.morph(json, {
type: 'fade',
duration: 1500
}, {
'node-property': ['width', 'height']
});
(end code)
*/
extraModes = extraModes || {};
var graph;
//TODO(nico) this hack makes morphing work with the Hypertree.
//Need to check if it has been solved and this can be removed.
case 'nothing':
//Update data properties if the node existed
if(adjExists) {
}
}
});
//Update data properties if the node existed
if(nodeExists) {
}
}
});
}
});
});
break;
case 'replot':
break;
case 'fade:seq': case 'fade': case 'fade:con':
that = this;
//preprocessing for nodes to delete.
//get node property modes to interpolate
function(n) { return '$' + n; });
if(!graphNode) {
} else {
//Update node data information
for(var prop in graphNodeData) {
} else {
}
}
}
});
fadeEdges = true;
}
});
});
//preprocessing for adding nodes.
['node-property:alpha',
'edge-property:alpha'];
//Append extra node-property animations (if any)
//Append extra edge-property animations (if any)
//Add label-property animations (if any)
if('label-property' in extraModes) {
}
//only use reposition if its implemented.
if (viz.reposition) {
viz.reposition();
} else {
}
}
});
onComplete: function() {
});
});
});
}
}));
break;
default:;
}
},
/*
Method: contract
Collapses the subtree of the given node. The node will have a _collapsed=true_ property.
Parameters:
node - (object) A <Graph.Node>.
opt - (object) An object containing options described below
type - (string) Whether to 'replot' or 'animate' the contraction.
There are also a number of Animation options. For more information see <Options.Fx>.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.op.contract(node, {
type: 'animate',
duration: 1000,
hideLabels: true,
transition: $jit.Trans.Quart.easeOut
});
(end code)
*/
'modes': ['node-property:alpha:span', 'linear']
});
(function subn(n) {
n.eachSubnode(function(ch) {
});
})(node);
'property':'end'
});
}
(function subn(n) {
n.eachSubnode(function(ch) {
});
})(node);
}
},
/*
Method: expand
Expands the previously contracted subtree. The given node must have the _collapsed=true_ property.
Parameters:
node - (object) A <Graph.Node>.
opt - (object) An object containing options described below
type - (string) Whether to 'replot' or 'animate'.
There are also a number of Animation options. For more information see <Options.Fx>.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.op.expand(node, {
type: 'animate',
duration: 1000,
hideLabels: true,
transition: $jit.Trans.Quart.easeOut
});
(end code)
*/
if(!('collapsed' in node)) return;
'modes': ['node-property:alpha:span', 'linear']
});
(function subn(n) {
n.eachSubnode(function(ch) {
});
})(node);
'property':'end'
});
}
}
},
preprocessSum: function(graph) {
}
});
var fadeEdges = false;
fadeEdges = true;
}
}
});
});
return fadeEdges;
}
};
/*
File: Helpers.js
Helpers are objects that contain rendering primitives (like rectangles, ellipses, etc), for plotting nodes and edges.
Helpers also contain implementations of the *contains* method, a method returning a boolean indicating whether the mouse
position is over the rendered shape.
Helpers are very useful when implementing new NodeTypes, since you can access them through *this.nodeHelper* and
*this.edgeHelper* <Graph.Plot> properties, providing you with simple primitives and mouse-position check functions.
Example:
(start code js)
//implement a new node type
$jit.Viz.Plot.NodeTypes.implement({
'customNodeType': {
'render': function(node, canvas) {
this.nodeHelper.circle.render ...
},
'contains': function(node, pos) {
this.nodeHelper.circle.contains ...
}
}
});
//implement an edge type
$jit.Viz.Plot.EdgeTypes.implement({
'customNodeType': {
'render': function(node, canvas) {
this.edgeHelper.circle.render ...
},
//optional
'contains': function(node, pos) {
this.edgeHelper.circle.contains ...
}
}
});
(end code)
*/
/*
Object: NodeHelper
Contains rendering and other type of primitives for simple shapes.
*/
var NodeHelper = {
'none': {
'render': $.empty,
'contains': $.lambda(false)
},
/*
Object: NodeHelper.circle
*/
'circle': {
/*
Method: render
Renders a circle into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the circle.
radius - (number) The radius of the circle to be rendered.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.circle.render('fill', { x: 10, y: 30 }, 30, viz.canvas);
(end code)
*/
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
radius - (number) The radius of the rendered circle.
Example:
(start code js)
NodeHelper.circle.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30); //true
(end code)
*/
}
},
/*
Object: NodeHelper.ellipse
*/
'ellipse': {
/*
Method: render
Renders an ellipse into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the ellipse.
width - (number) The width of the ellipse.
height - (number) The height of the ellipse.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.ellipse.render('fill', { x: 10, y: 30 }, 30, 40, viz.canvas);
(end code)
*/
scalex = 1,
scaley = 1,
scaleposx = 1,
scaleposy = 1,
radius = 0;
} else {
}
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
width - (number) The width of the rendered ellipse.
height - (number) The height of the rendered ellipse.
Example:
(start code js)
NodeHelper.ellipse.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30, 40);
(end code)
*/
var radius = 0,
scalex = 1,
scaley = 1,
diffx = 0,
diffy = 0,
diff = 0;
} else {
}
}
},
/*
Object: NodeHelper.square
*/
'square': {
/*
Method: render
Renders a square into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the square.
dim - (number) The radius (or half-diameter) of the square.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.square.render('stroke', { x: 10, y: 30 }, 40, viz.canvas);
(end code)
*/
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
dim - (number) The radius (or half-diameter) of the square.
Example:
(start code js)
NodeHelper.square.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30);
(end code)
*/
}
},
/*
Object: NodeHelper.rectangle
*/
'rectangle': {
/*
Method: render
Renders a rectangle into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the rectangle.
width - (number) The width of the rectangle.
height - (number) The height of the rectangle.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.rectangle.render('fill', { x: 10, y: 30 }, 30, 40, viz.canvas);
(end code)
*/
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
width - (number) The width of the rendered rectangle.
height - (number) The height of the rendered rectangle.
Example:
(start code js)
NodeHelper.rectangle.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30, 40);
(end code)
*/
}
},
/*
Object: NodeHelper.triangle
*/
'triangle': {
/*
Method: render
Renders a triangle into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the triangle.
dim - (number) Half the base and half the height of the triangle.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.triangle.render('stroke', { x: 10, y: 30 }, 40, viz.canvas);
(end code)
*/
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
dim - (number) Half the base and half the height of the triangle.
Example:
(start code js)
NodeHelper.triangle.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30);
(end code)
*/
}
},
/*
Object: NodeHelper.star
*/
'star': {
/*
Method: render
Renders a star (concave decagon) into the canvas.
Parameters:
type - (string) Possible options are 'fill' or 'stroke'.
pos - (object) An *x*, *y* object with the position of the center of the star.
dim - (number) The length of a side of a concave decagon.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
NodeHelper.star.render('stroke', { x: 10, y: 30 }, 40, viz.canvas);
(end code)
*/
for (var i = 0; i < 9; i++) {
if (i % 2 == 0) {
} else {
}
}
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
npos - (object) An *x*, *y* object with the <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
dim - (number) The length of a side of a concave decagon.
Example:
(start code js)
NodeHelper.star.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, 30);
(end code)
*/
}
}
};
/*
Object: EdgeHelper
Contains rendering primitives for simple edge shapes.
*/
var EdgeHelper = {
/*
Object: EdgeHelper.line
*/
'line': {
/*
Method: render
Renders a line into the canvas.
Parameters:
from - (object) An *x*, *y* object with the starting position of the line.
to - (object) An *x*, *y* object with the ending position of the line.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
EdgeHelper.line.render({ x: 10, y: 30 }, { x: 10, y: 50 }, viz.canvas);
(end code)
*/
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
posFrom - (object) An *x*, *y* object with a <Graph.Node> position.
posTo - (object) An *x*, *y* object with a <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
epsilon - (number) The dimension of the shape.
Example:
(start code js)
EdgeHelper.line.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, { x: 15, y: 35 }, 30);
(end code)
*/
return true;
}
}
return false;
}
},
/*
Object: EdgeHelper.arrow
*/
'arrow': {
/*
Method: render
Renders an arrow into the canvas.
Parameters:
from - (object) An *x*, *y* object with the starting position of the arrow.
to - (object) An *x*, *y* object with the ending position of the arrow.
dim - (number) The dimension of the arrow.
swap - (boolean) Whether to set the arrow pointing to the starting position or the ending position.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
EdgeHelper.arrow.render({ x: 10, y: 30 }, { x: 10, y: 50 }, 13, false, viz.canvas);
(end code)
*/
// invert edge direction
if (swap) {
}
},
/*
Method: contains
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
posFrom - (object) An *x*, *y* object with a <Graph.Node> position.
posTo - (object) An *x*, *y* object with a <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
epsilon - (number) The dimension of the shape.
Example:
(start code js)
EdgeHelper.arrow.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, { x: 15, y: 35 }, 30);
(end code)
*/
}
},
/*
Object: EdgeHelper.hyperline
*/
'hyperline': {
/*
Method: render
Renders a hyperline into the canvas. A hyperline are the lines drawn for the <Hypertree> visualization.
Parameters:
from - (object) An *x*, *y* object with the starting position of the hyperline. *x* and *y* must belong to [0, 1).
to - (object) An *x*, *y* object with the ending position of the hyperline. *x* and *y* must belong to [0, 1).
r - (number) The scaling factor.
canvas - (object) A <Canvas> instance.
Example:
(start code js)
EdgeHelper.hyperline.render({ x: 10, y: 30 }, { x: 10, y: 50 }, 100, viz.canvas);
(end code)
*/
} else {
- centerOfCircle.x);
- centerOfCircle.x);
}
/*
Calculates the arc parameters through two points.
More information in <http://en.wikipedia.org/wiki/Poincar%C3%A9_disc_model#Analytic_geometry_constructions_in_the_hyperbolic_plane>
Parameters:
p1 - A <Complex> instance.
p2 - A <Complex> instance.
scale - The Disk's diameter.
Returns:
An object containing some arc properties.
*/
// Fall back to a straight line
if (aDen == 0)
return {
x: 0,
y: 0,
ratio: -1
};
var x = -a / 2;
var y = -b / 2;
// Fall back to a straight line
if (squaredRatio < 0)
return {
x: 0,
y: 0,
ratio: -1
};
var out = {
x: x,
y: y,
a: a,
b: b
};
return out;
}
/*
Sets angle direction to clockwise (true) or counterclockwise (false).
Parameters:
angleBegin - Starting angle for drawing the arc.
angleEnd - The HyperLine will be drawn from angleBegin to angleEnd.
Returns:
A Boolean instance describing the sense for drawing the HyperLine.
*/
}
},
/*
Method: contains
Not Implemented
Returns *true* if *pos* is contained in the area of the shape. Returns *false* otherwise.
Parameters:
posFrom - (object) An *x*, *y* object with a <Graph.Node> position.
posTo - (object) An *x*, *y* object with a <Graph.Node> position.
pos - (object) An *x*, *y* object with the position to check.
epsilon - (number) The dimension of the shape.
Example:
(start code js)
EdgeHelper.hyperline.contains({ x: 10, y: 30 }, { x: 15, y: 35 }, { x: 15, y: 35 }, 30);
(end code)
*/
'contains': $.lambda(false)
}
};
/*
* File: Graph.Plot.js
*/
/*
Object: Graph.Plot
<Graph> rendering and animation methods.
Properties:
nodeHelper - <NodeHelper> object.
edgeHelper - <EdgeHelper> object.
*/
//Default initializer
},
//Add helpers
Interpolator: {
'map': {
'border': 'color',
'color': 'color',
'width': 'number',
'height': 'number',
'dim': 'number',
'alpha': 'number',
'lineWidth': 'number',
'angularWidth':'number',
'span':'number',
'valueArray':'array-number',
'dimArray':'array-number'
//'colorArray':'array-color'
},
//canvas specific parsers
'canvas': {
'globalAlpha': 'number',
'fillStyle': 'color',
'strokeStyle': 'color',
'lineWidth': 'number',
'shadowBlur': 'number',
'shadowColor': 'color',
'shadowOffsetX': 'number',
'shadowOffsetY': 'number',
'miterLimit': 'number'
},
//label parsers
'label': {
'size': 'number',
'color': 'color'
},
//Number interpolator
},
//Position interpolators
if(v.norm() < 1) {
var x = v.x, y = v.y;
.getc().moebiusTransformation(v);
v.x = x; v.y = y;
}
},
},
},
},
},
cur = [];
}
} else {
}
}
},
if(props) {
for(var i=0; i<len; i++) {
}
} else {
}
}
},
},
},
},
},
},
}
},
/*
sequence
Iteratively performs an action while refreshing the state of the visualization.
Parameters:
options - (object) An object containing some sequence options described below
condition - (function) A function returning a boolean instance in order to stop iterations.
step - (function) A function to execute on each step of the iteration.
onComplete - (function) A function to execute when the sequence finishes.
duration - (number) Duration (in milliseconds) of each step.
Example:
(start code js)
var rg = new $jit.RGraph(options);
var i = 0;
rg.fx.sequence({
condition: function() {
return i == 10;
},
step: function() {
alert(i++);
},
onComplete: function() {
alert('done!');
}
});
(end code)
*/
var that = this;
onComplete: $.empty,
duration: 200
}, options || {});
var interval = setInterval(function() {
} else {
}
},
/*
prepare
Prepare graph position and other attribute values before performing an Animation.
This method is used internally by the Toolkit.
See also:
<Animation>, <Graph.Plot.animate>
*/
accessors = {
'node-property': {
'getter': 'getData',
'setter': 'setData'
},
'edge-property': {
'getter': 'getData',
'setter': 'setData'
},
'node-style': {
'getter': 'getCanvasStyle',
'setter': 'setCanvasStyle'
},
'edge-style': {
'getter': 'getCanvasStyle',
'setter': 'setCanvasStyle'
}
};
//parse modes
var m = {};
}
} else {
for(var p in modes) {
if(p == 'position') {
} else {
}
}
}
if(p in m) {
var prop = m[p];
}
}
});
if(p in m) {
var prop = m[p];
}
});
}
});
});
return m;
},
/*
Method: animate
Animates a <Graph> by interpolating some <Graph.Node>, <Graph.Adjacence> or <Graph.Label> properties.
Parameters:
opt - (object) Animation options. The object properties are described below
duration - (optional) Described in <Options.Fx>.
fps - (optional) Described in <Options.Fx>.
hideLabels - (optional|boolean) Whether to hide labels during the animation.
modes - (required|object) An object with animation modes (described below).
Animation modes:
Animation modes are strings representing different node/edge and graph properties that you'd like to animate.
They are represented by an object that has as keys main categories of properties to animate and as values a list
of these specific properties. The properties are described below
position - Describes the way nodes' positions must be interpolated. Possible values are 'linear', 'polar' or 'moebius'.
node-property - Describes which Node properties will be interpolated. These properties can be any of the ones defined in <Options.Node>.
edge-property - Describes which Edge properties will be interpolated. These properties can be any the ones defined in <Options.Edge>.
label-property - Describes which Label properties will be interpolated. These properties can be any of the ones defined in <Options.Label> like color or size.
node-style - Describes which Node Canvas Styles will be interpolated. These are specific canvas properties like fillStyle, strokeStyle, lineWidth, shadowBlur, shadowColor, shadowOffsetX, shadowOffsetY, etc.
edge-style - Describes which Edge Canvas Styles will be interpolated. These are specific canvas properties like fillStyle, strokeStyle, lineWidth, shadowBlur, shadowColor, shadowOffsetX, shadowOffsetY, etc.
Example:
(start code js)
var viz = new $jit.Viz(options);
//...tweak some Data, CanvasStyles or LabelData properties...
viz.fx.animate({
modes: {
'position': 'linear',
'node-property': ['width', 'height'],
'node-style': 'shadowColor',
'label-property': 'size'
},
hideLabels: false
});
//...can also be written like this...
viz.fx.animate({
modes: ['linear',
'node-property:width:height',
'node-style:shadowColor',
'label-property:size'],
hideLabels: false
});
(end code)
*/
var that = this,
interp = this.Interpolator,
//prepare graph values
//animate
$animating: false,
for(var p in m) {
}
});
this.$animating = true;
},
complete: function() {
opt.onComplete();
//TODO(nico): This shouldn't be here!
//opt.onAfterCompute();
}
})).start();
},
/*
nodeFx
Apply animation to node properties like color, width, height, dim, etc.
Parameters:
options - Animation options. This object properties is described below
elements - The Elements to be transformed. This is an object that has a properties
(start code js)
'elements': {
//can also be an array of ids
'id': 'id-of-node-to-transform',
//properties to be modified. All properties are optional.
'properties': {
'color': '#ccc', //some color
'width': 10, //some width
'height': 10, //some height
'dim': 20, //some dim
'lineWidth': 10 //some line width
}
}
(end code)
- _reposition_ Whether to recalculate positions and add a motion animation.
This might be used when changing _width_ or _height_ properties in a <Layouts.Tree> like layout. Default's *false*.
- _onComplete_ A method that is called when the animation completes.
...and all other <Graph.Plot.animate> options like _duration_, _fps_, _transition_, etc.
Example:
(start code js)
var rg = new RGraph(canvas, config); //can be also Hypertree or ST
rg.fx.nodeFx({
'elements': {
'id':'mynodeid',
'properties': {
'color':'#ccf'
},
'transition': Trans.Quart.easeOut
}
});
(end code)
*/
animation = this.nodeFxAnimation,
'elements': {
'id': false,
'properties': {}
},
'reposition': false
});
onBeforeCompute: $.empty,
});
//check if an animation is running
//set end values for nodes
}
});
} else {
if(n) {
}
}
});
}
//get keys
var propnames = [];
//add node properties modes
//set new node positions
if(opt.reposition) {
}
//animate
type: 'nodefx'
}));
},
/*
Method: plot
Plots a <Graph>.
Parameters:
opt - (optional) Plotting options. Most of them are described in <Options.Fx>.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.fx.plot();
(end code)
*/
that = this,
if(!root) return;
}
});
}
} else {
}
}
});
},
/*
Plots a Subtree.
*/
var that = this,
}
});
else
} else {
}
},
/*
Method: plotNode
Plots a <Graph.Node>.
Parameters:
node - (object) A <Graph.Node>.
canvas - (object) A <Canvas> element.
*/
if(f != 'none') {
for(var s in ctxObj) {
}
}
},
/*
Method: plotLine
Plots a <Graph.Adjacence>.
Parameters:
adj - (object) A <Graph.Adjacence>.
canvas - (object) A <Canvas> instance.
*/
if(f != 'none') {
for(var s in ctxObj) {
}
}
}
};
/*
Object: Graph.Plot3D
<Graph> 3D rendering and animation methods.
Properties:
nodeHelper - <NodeHelper> object.
edgeHelper - <EdgeHelper> object.
*/
Interpolator: {
}
},
getAlpha: function() {
}
});
},
getAlpha: function() {
}
});
},
viewMatrix = new Matrix4,
}
if(!elem.webGLVertexBuffer) {
var vertices = [],
faces = [],
normals = [],
vertexIndex = 0,
if(v4) {
vertexIndex += 4;
} else {
vertexIndex += 3;
}
}
//create and store vertex data
//create and store faces index data
//calculate vertex normals and store them
}
//send matrix data
//send normal matrix for lighting
//send color data
//send lighting data
//set ambient light color
}
//set directional light
if(lighting.directional) {
}
}
//send vertices data
//send normals data
//draw!
}
});
/*
* File: Graph.Label.js
*
*/
/*
Object: Graph.Label
Description:
The <Graph.Label> interface is implemented in multiple ways to provide
different label types.
For example, the Graph.Label interface is implemented as <Graph.Label.HTML> to provide
HTML label elements. Also we provide the <Graph.Label.SVG> interface for SVG type labels.
The <Graph.Label.Native> interface implements these methods with the native Canvas text rendering functions.
All subclasses (<Graph.Label.HTML>, <Graph.Label.SVG> and <Graph.Label.Native>) implement the method plotLabel.
*/
/*
Class: Graph.Label.Native
Implements labels natively, using the Canvas text API.
*/
initialize: function(viz) {
},
/*
Method: plotLabel
Plots a label for a given node.
Parameters:
canvas - (object) A <Canvas> instance.
node - (object) A <Graph.Node>.
controller - (object) A configuration object.
Example:
(start code js)
var viz = new $jit.Viz(options);
var node = viz.graph.getNode('nodeId');
viz.labels.plotLabel(viz.canvas, node, viz.config);
(end code)
*/
ctx.font = node.getLabelData('style') + ' ' + node.getLabelData('size') + 'px ' + node.getLabelData('family');
},
/*
renderLabel
Does the actual rendering of the label in the canvas. The default
implementation renders the label close to the position of the node, this
method should be overriden to position the labels differently.
Parameters:
canvas - A <Canvas> instance.
node - A <Graph.Node>.
controller - A configuration object. See also <Hypertree>, <RGraph>, <ST>.
*/
},
hideLabels: $.empty
});
/*
Class: Graph.Label.DOM
Abstract Class implementing some DOM label methods.
Implemented by:
<Graph.Label.HTML> and <Graph.Label.SVG>.
*/
//A flag value indicating if node labels are being displayed or not.
labelsHidden: false,
//Label container
labelContainer: false,
//Label elements hash.
labels: {},
/*
Method: getLabelContainer
Lazy fetcher for the label container.
Returns:
The label container DOM element.
Example:
(start code js)
var viz = new $jit.Viz(options);
var labelContainer = viz.labels.getLabelContainer();
alert(labelContainer.innerHTML);
(end code)
*/
getLabelContainer: function() {
return this.labelContainer ?
this.labelContainer :
},
/*
Method: getLabel
Lazy fetcher for the label element.
Parameters:
id - (string) The label id (which is also a <Graph.Node> id).
Returns:
The label element.
Example:
(start code js)
var viz = new $jit.Viz(options);
var label = viz.labels.getLabel('someid');
alert(label.innerHTML);
(end code)
*/
},
/*
Method: hideLabels
Hides all labels (by hiding the label container).
Parameters:
hide - (boolean) A boolean value indicating if the label container must be hidden or not.
Example:
(start code js)
var viz = new $jit.Viz(options);
rg.labels.hideLabels(true);
(end code)
*/
hideLabels: function (hide) {
var container = this.getLabelContainer();
if(hide)
else
this.labelsHidden = hide;
},
/*
Method: clearLabels
Clears the label container.
Parameters:
force - (boolean) Forces deletion of all labels.
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.labels.clearLabels();
(end code)
*/
clearLabels: function(force) {
this.disposeLabel(id);
}
}
},
/*
Method: disposeLabel
Removes a label.
Parameters:
id - (string) A label id (which generally is also a <Graph.Node> id).
Example:
(start code js)
var viz = new $jit.Viz(options);
viz.labels.disposeLabel('labelid');
(end code)
*/
disposeLabel: function(id) {
}
},
/*
Method: hideLabel
Hides the corresponding <Graph.Node> label.
Parameters:
node - (object) A <Graph.Node>. Can also be an array of <Graph.Nodes>.
show - (boolean) If *true*, nodes will be shown. Otherwise nodes will be hidden.
Example:
(start code js)
var rg = new $jit.Viz(options);
viz.labels.hideLabel(viz.graph.getNode('someid'), false);
(end code)
*/
if (lab) {
}
});
},
/*
fitsInCanvas
Returns _true_ or _false_ if the label for the node is contained in the canvas dom element or not.
Parameters:
pos - A <Complex> instance (I'm doing duck typing here so any object with _x_ and _y_ parameters will do).
canvas - A <Canvas> instance.
Returns:
A boolean value specifying if the label is contained in the <Canvas> DOM element or not.
*/
return true;
}
});
/*
Class: Graph.Label.HTML
Implements HTML labels.
Extends:
All <Graph.Label.DOM> methods.
*/
/*
Method: plotLabel
Plots a label for a given node.
Parameters:
canvas - (object) A <Canvas> instance.
node - (object) A <Graph.Node>.
controller - (object) A configuration object.
Example:
(start code js)
var viz = new $jit.Viz(options);
var node = viz.graph.getNode('nodeId');
viz.labels.plotLabel(viz.canvas, node, viz.config);
(end code)
*/
var container = this.getLabelContainer();
}
}
});
/*
Class: Graph.Label.SVG
Implements SVG labels.
Extends:
All <Graph.Label.DOM> methods.
*/
/*
Method: plotLabel
Plots a label for a given node.
Parameters:
canvas - (object) A <Canvas> instance.
node - (object) A <Graph.Node>.
controller - (object) A configuration object.
Example:
(start code js)
var viz = new $jit.Viz(options);
var node = viz.graph.getNode('nodeId');
viz.labels.plotLabel(viz.canvas, node, viz.config);
(end code)
*/
var ns = 'http://www.w3.org/2000/svg';
var container = this.getLabelContainer();
}
}
});
initialize: function(viz) {
},
/*
Applies a translation to the tree.
Parameters:
pos - A <Complex> number specifying translation vector.
prop - A <Graph.Node> position property ('pos', 'start' or 'end').
Example:
(start code js)
st.geom.translate(new Complex(300, 100), 'end');
(end code)
*/
});
},
/*
Hides levels of the tree until it properly fits in canvas.
*/
execShow:true,
execHide:true,
}, callback || {});
if(d > level) {
n.drawn = false;
n.exist = false;
}
} else {
n.exist = true;
}
}
});
},
/*
Returns the right level to show for the current tree in order to fit in canvas.
*/
if(!constrained) return level;
return level;
}
});
/*
* File: Loader.js
*
*/
/*
Object: Loader
Provides methods for loading and serving JSON data.
*/
var Loader = {
if(!isGraph)
//make tree
}
}
else
//make graph
return json[i];
}
}
// The node was not defined in the JSON
// Let's create it
var newNode = {
"id" : id,
"name" : id
};
};
if (adj) {
if(typeof adj[j] != 'string') {
}
}
}
}
return ans;
},
/*
Method: loadJSON
Loads a JSON structure to the visualization. The JSON structure can be a JSON *tree* or *graph* structure.
A JSON tree or graph structure consists of nodes, each having as properties
id - (string) A unique identifier for the node
name - (string) A node's name
data - (object) The data optional property contains a hash (i.e {})
where you can store all the information you want about this node.
For JSON *Tree* structures, there's an extra optional property *children* of type Array which contains the node's children.
Example:
(start code js)
var json = {
"id": "aUniqueIdentifier",
"name": "usually a nodes name",
"data": {
"some key": "some value",
"some other key": "some other value"
},
"children": [ *other nodes or empty* ]
};
(end code)
JSON *Graph* structures consist of an array of nodes, each specifying the nodes to which the current node is connected.
For JSON *Graph* structures, the *children* property is replaced by the *adjacencies* property.
There are two types of *Graph* structures, *simple* and *extended* graph structures.
For *simple* Graph structures, the adjacencies property contains an array of strings, each specifying the
id of the node connected to the main node.
Example:
(start code js)
var json = [
{
"id": "aUniqueIdentifier",
"name": "usually a nodes name",
"data": {
"some key": "some value",
"some other key": "some other value"
},
"adjacencies": ["anotherUniqueIdentifier", "yetAnotherUniqueIdentifier", 'etc']
},
'other nodes go here...'
];
(end code)
For *extended Graph structures*, the adjacencies property contains an array of Adjacency objects that have as properties
nodeTo - (string) The other node connected by this adjacency.
Example:
(start code js)
var json = [
{
"id": "aUniqueIdentifier",
"name": "usually a nodes name",
"data": {
"some key": "some value",
"some other key": "some other value"
},
"adjacencies": [
{
nodeTo:"aNodeId",
data: {} //put whatever you want here
},
'other adjacencies go here...'
},
'other nodes go here...'
];
(end code)
About the data property:
As described before, you can store custom data in the *data* property of JSON *nodes* and *adjacencies*.
You can use almost any string as key for the data object. Some keys though are reserved by the toolkit, and
have special meanings. This is the case for keys starting with a dollar sign, for example, *$width*.
For JSON *node* objects, adding dollar prefixed properties that match the names of the options defined in
<Options.Node> will override the general value for that option with that particular value. For this to work
however, you do have to set *overridable = true* in <Options.Node>.
The same thing is true for JSON adjacencies. Dollar prefixed data properties will alter values set in <Options.Edge>
if <Options.Edge> has *overridable = true*.
When loading JSON data into TreeMaps, the *data* property must contain a value for the *$area* key,
since this is the value which will be taken into account when creating the layout.
The same thing goes for the *$color* parameter.
In JSON Nodes you can use also *$label-* prefixed properties to refer to <Options.Label> properties. For example,
*$label-size* will refer to <Options.Label> size property. Also, in JSON nodes and adjacencies you can set
canvas specific properties individually by using the *$canvas-* prefix. For example, *$canvas-shadowBlur* will refer
to the *shadowBlur* property.
These properties can also be accessed after loading the JSON data from <Graph.Nodes> and <Graph.Adjacences>
by using <Accessors>. For more information take a look at the <Graph> and <Accessors> documentation.
Finally, these properties can also be used to create advanced animations like with <Options.NodeStyles>. For more
information about creating animations please take a look at the <Graph.Plot> and <Graph.Plot.animate> documentation.
loadJSON Parameters:
json - A JSON Tree or Graph structure.
i - For Graph structures only. Sets the indexed node as root for the visualization.
*/
//if they're canvas labels erase them.
this.labels.clearLabels(true);
}
} else {
}
},
/*
Method: toJSON
See <Loader.loadJSON> for the graph formats available.
See also:
<Loader.loadJSON>
Parameters:
type - (string) Default's "tree". The type of the JSON structure to be returned.
Possible options are "tree" or "graph".
*/
if(type == 'tree') {
var ans = {};
var ans = {};
var ch =[];
node.eachSubnode(function(n) {
});
return ans;
})(rootNode);
return ans;
} else {
var ans = [];
var ansNode = {};
var adjs = [];
var ansAdj = {};
}
});
});
return ans;
}
}
};
/*
* File: Layouts.js
*
* Implements base Tree and Graph layouts.
*
* Description:
*
* Implements base Tree and Graph layouts like Radial, Tree, etc.
*
*/
/*
* Object: Layouts
*
* Parent object for common layouts.
*
*/
//Some util shared layout functions are defined here.
var NodeDim = {
label: null,
this.initializeLabel(opt);
if(autoWidth || autoHeight) {
//delete dimensions since these are
//going to be overridden now.
//reset label dimensions
//TODO(nico) should let the user choose what to insert here.
} else {
}
}
});
},
initializeLabel: function(opt) {
if(!this.label) {
}
this.setLabelStyles(opt);
},
setLabelStyles: function(opt) {
'visibility': 'hidden',
'position': 'absolute',
'width': 'auto',
'height': 'auto'
});
}
};
/*
* Class: Layouts.Tree
*
* Implements a Tree Layout.
*
* Implemented By:
*
* <ST>
*
* Inspired by:
*
* Drawing Trees (Andrew J. Kennedy) <http://research.microsoft.com/en-us/um/people/akenn/fun/drawingtrees.pdf>
*
*/
//Layout functions
/*
Calculates the max width and height nodes for a tree level
*/
if (dim.overridable) {
var w = -1, h = -1;
}
});
return {
};
} else {
return dim;
}
}
}
var ans = [];
});
return ans;
}
return qs;
return ps;
}
return def;
}
return 0;
+ subtreeOffset, p - q + siblingOffset);
}
return [];
}
;
}
return [];
}
;
}
if (align == "left")
else if (align == "right")
}
return ans;
}
node.eachSubnode(function(n) {
if (n.exist
if (!chmaxsize)
}
});
}
} else {
}
return {
};
}
}
return new Class({
/*
Method: compute
Computes nodes' positions.
*/
'drawn' : true,
'exist' : true,
'selected' : true
});
}
},
var that = this;
//calculate layout
//absolutize
node.eachSubnode(function(n) {
if (n.exist
if (indent) {
}
red(n);
}
});
})(node);
});
}
});
})();
/*
* File: Spacetree.js
*/
/*
Class: ST
A Tree layout with advanced contraction and expansion animations.
Inspired by:
SpaceTree: Supporting Exploration in Large Node Link Tree, Design Evolution and Empirical Evaluation (Catherine Plaisant, Jesse Grosjean, Benjamin B. Bederson)
Drawing Trees (Andrew J. Kennedy) <http://research.microsoft.com/en-us/um/people/akenn/fun/drawingtrees.pdf>
Note:
This visualization was built and engineered from scratch, taking only the papers as inspiration, and only shares some features with the visualization described in those papers.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Tree>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
constrained - (boolean) Default's *true*. Whether to show the entire tree when loaded or just the number of levels specified by _levelsToShow_.
levelsToShow - (number) Default's *2*. The number of levels to show for a subtree. This number is relative to the selected node.
levelDistance - (number) Default's *30*. The distance between two consecutive levels of the tree.
Node.type - Described in <Options.Node>. Default's set to *rectangle*.
offsetX - (number) Default's *0*. The x-offset distance from the selected node to the center of the canvas.
offsetY - (number) Default's *0*. The y-offset distance from the selected node to the center of the canvas.
duration - Described in <Options.Fx>. It's default value has been changed to *700*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <ST.Op> instance.
fx - Access a <ST.Plot> instance.
labels - Access a <ST.Label> interface implementation.
*/
// Define some private methods first...
// Nodes in path
var nodesInPath = [];
// Nodes to contract
function getNodesToHide(node) {
if(!this.config.constrained) {
return [];
}
} else {
}
}
});
});
}
}
return nodeArray;
};
// Nodes to expand
function getNodesToShow(node) {
}
});
return nodeArray;
};
// Now define the actual class.
return new Class({
initialize: function(controller) {
var config= {
levelsToShow: 2,
levelDistance: 30,
constrained: true,
Node: {
type: 'rectangle'
},
duration: 700,
offsetX: 0,
offsetY: 0
};
var canvasConfig = this.config;
if(canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Complex
};
this.clickedNode= null;
// initialize extras
this.initializeExtras();
},
/*
Method: plot
Plots the <ST>. This is a shortcut to *fx.plot*.
*/
/*
Method: switchPosition
Switches the tree orientation.
Parameters:
pos - (string) The new tree orientation. Possible values are "top", "left", "right" and "bottom".
method - (string) Set this to "animate" if you want to animate the tree when switching its position. You can also set this parameter to "replot" to just replot the subtree.
onComplete - (optional|object) This callback is called once the "switching" animation is complete.
Example:
(start code js)
st.switchPosition("right", "animate", {
onComplete: function() {
alert('completed!');
}
});
(end code)
*/
this.contract({
onComplete: function() {
if(method == 'animate') {
} else if(method == 'replot') {
}
}
}, pos);
}
},
/*
Method: switchAlignment
Switches the tree alignment.
Parameters:
align - (string) The new tree alignment. Possible values are "left", "center" and "right".
method - (string) Set this to "animate" if you want to animate the tree after aligning its position. You can also set this parameter to "replot" to just replot the subtree.
onComplete - (optional|object) This callback is called once the "switching" animation is complete.
Example:
(start code js)
st.switchAlignment("right", "animate", {
onComplete: function() {
alert('completed!');
}
});
(end code)
*/
if(method == 'animate') {
} else if(method == 'replot') {
}
},
/*
Method: addNodeInPath
Adds a node to the current path as selected node. The selected node will be visible (as in non-collapsed) at all times.
Parameters:
id - (string) A <Graph.Node> id.
Example:
(start code js)
st.addNodeInPath("nodeId");
(end code)
*/
addNodeInPath: function(id) {
},
/*
Method: clearNodesInPath
Removes all nodes tagged as selected by the <ST.addNodeInPath> method.
See also:
<ST.addNodeInPath>
Example:
(start code js)
st.clearNodesInPath();
(end code)
*/
clearNodesInPath: function(id) {
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function() {
this.reposition();
},
reposition: function() {
});
this.compute('end');
},
if(n.drawn &&
!n.anySubnode()) {
}
});
}
else
},
},
this.compute('end', false);
};
}
},
},
selectPath: function(node) {
var that = this;
function(n) {
n.exist = true;
n.drawn = true;
});
};
}
},
/*
Method: setRoot
Switches the current root node. Changes the topology of the Tree.
Parameters:
id - (string) The id of the node to be set as root.
method - (string) Set this to "animate" if you want to animate the tree after adding the subtree. You can also set this parameter to "replot" to just replot the subtree.
onComplete - (optional|object) An action to perform after the animation (if any).
Example:
(start code js)
st.setRoot('nodeId', 'animate', {
onComplete: function() {
alert('complete!');
}
});
(end code)
*/
if(this.busy) return;
this.busy = true;
function $setRoot() {
var opp = {
'left': 'right',
'right': 'left',
'top': 'bottom',
'bottom': 'top'
}[orn];
rootNode.eachSubnode(function(n) {
tag(n);
}
});
})(rootNode);
}
this.clickedNode = clickedNode;
execHide: false,
}
}
});
this.compute('end');
this.busy = true;
onComplete: function() {
onComplete: function() {
}
});
}
});
}
// delete previous orientations (if any)
if(method == 'animate') {
} else if(method == 'replot') {
}
},
/*
Method: addSubtree
Adds a subtree.
Parameters:
subtree - (object) A JSON Tree object. See also <Loader.loadJSON>.
method - (string) Set this to "animate" if you want to animate the tree after adding the subtree. You can also set this parameter to "replot" to just replot the subtree.
onComplete - (optional|object) An action to perform after the animation (if any).
Example:
(start code js)
st.addSubtree(json, 'animate', {
onComplete: function() {
alert('complete!');
}
});
(end code)
*/
if(method == 'replot') {
} else if (method == 'animate') {
}
},
/*
Method: removeSubtree
Removes a subtree.
Parameters:
id - (string) The _id_ of the subtree to be removed.
removeRoot - (boolean) Default's *false*. Remove the root of the subtree or only its subnodes.
method - (string) Set this to "animate" if you want to animate the tree after removing the subtree. You can also set this parameter to "replot" to just replot the subtree.
onComplete - (optional|object) An action to perform after the animation (if any).
Example:
(start code js)
st.removeSubtree('idOfSubtreeToBeRemoved', false, 'animate', {
onComplete: function() {
alert('complete!');
}
});
(end code)
*/
});
if(method == 'replot') {
} else if (method == 'animate') {
}
},
/*
Method: select
Selects a node in the <ST> without performing an animation. Useful when selecting
nodes which are currently hidden or deep inside the tree.
Parameters:
id - (string) The id of the node to select.
onComplete - (optional|object) an onComplete callback.
Example:
(start code js)
st.select('mynodeid', {
onComplete: function() {
alert('complete!');
}
});
(end code)
*/
var that = this;
this.selectPath(node);
this.clickedNode= node;
this.requestNodes(node, {
onComplete: function(){
n.visited = false;
});
}
});
},
/*
Method: onClick
Animates the <ST> to center the node specified by *id*.
Parameters:
id - (string) A node id.
options - (optional|object) A group of options and callbacks described below.
onComplete - (object) An object callback called when the animation finishes.
Move - (object) An object that has as properties _offsetX_ or _offsetY_ for adding some offset position to the centered node.
Example:
(start code js)
st.onClick('mynodeid', {
Move: {
enable: true,
offsetX: 30,
offsetY: 5
},
onComplete: function() {
alert('yay!');
}
});
(end code)
*/
var innerController = {
Move: {
enable: true,
},
setRightLevelToShowConfig: false,
onBeforeRequest: $.empty,
onBeforeMove: $.empty,
};
if(!this.busy) {
this.busy = true;
this.clickedNode = node;
this.requestNodes(node, {
onComplete: function() {
onComplete: function() {
onComplete: function() {
onComplete: function() {
}
}); // expand
}
}); // move
}
});// contract
}
});// request
}
}
});
})();
/*
Class: ST.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
Performs operations on group of nodes.
*/
initialize: function(viz) {
this.nodes = null;
},
/*
Calls the request method on the controller to request a subtree for each node.
*/
for(var i=0; i<len; i++) {
}
complete();
}
}
});
}
},
/*
Collapses group of nodes.
*/
var that = this;
$animating: false,
this.$animating = 'contract';
},
complete: function() {
}
})).start();
},
// TODO nodes are requested on demand, but not
// deleted when hidden. Would that be a good feature?
// Currently that feature is buggy, so I'll turn it off
// Actually this feature is buggy because trimming should take
// place onAfterCompute and not right after collapsing nodes.
'drawn': false,
'exist': false
});
}
});
} else {
var ids = [];
});
}
}
},
/*
Expands group of nodes.
*/
var that = this;
$animating: false,
this.$animating = 'expand';
},
complete: function() {
}
})).start();
},
// check for root nodes if multitree
var orns = ' ';
n.eachSubnode(function(ch) {
}
});
}
});
});
},
return this.nodes;
},
/*
Filters an array of nodes leaving only nodes with children.
*/
getNodesWithChildren: function(nodes) {
}
}
}
}
return ans;
},
var i, node;
var nds = {};
node.eachSubgraph(function(n) {
// TODO(nico): Cleanup
// special check for root node subnodes when
// multitree is checked.
&& n.drawn) {
n.drawn = false;
n.drawn = false;
}
});
}
// plot the whole (non-scaled) tree
// show nodes that were previously hidden
for(i in nds) {
}
// plot each scaled subtree
}
},
getSiblings: function(nodes) {
var siblings = {};
var par = n.getParents();
} else {
var ans = [];
});
}
});
return siblings;
}
});
/*
ST.Geom
Performs low level geometrical computations.
Access:
This instance can be accessed with the _geom_ parameter of the st instance created.
Example:
(start code js)
var st = new ST(canvas, config);
st.geom.translate //or can also call any other <ST.Geom> method
(end code)
*/
/*
Changes the tree current orientation to the one specified.
You should usually use <ST.switchPosition> instead.
*/
switchOrientation: function(orn) {
},
/*
Makes a value dispatch according to the current layout
Works like a CSS property, either _top-right-bottom-left_ or _top|bottom - left|right_.
*/
dispatch: function() {
// TODO(nico) should store Array.prototype.slice.call somewhere.
var val = function(a) { return typeof a == 'function'? a() : a; };
if(len == 2) {
} else if(len == 4) {
switch(s) {
}
}
return undefined;
},
/*
Returns label height or with, depending on the tree current orientation.
*/
&& ('$orn' in data)
if(!invert)
return this.dispatch(s, h, w);
else
return this.dispatch(s, w, h);
},
/*
Calculates a subtree base size. This is an utility function used by _getBaseSize_
*/
});
},
/*
getEdge
Returns a Complex instance with the begin or end position of the edge to be plotted.
Parameters:
node - A <Graph.Node> that is connected to this edge.
type - Returns the begin or end edge position. Possible values are 'begin' or 'end'.
Returns:
A <Complex> number specifying the begin or end position.
*/
var $C = function(a, b) {
return function(){
};
};
if(type == 'begin') {
} else throw "align: not implemented";
} else if(type == 'end') {
} else throw "align: not implemented";
}
},
/*
Adjusts the tree position due to canvas scaling or translation.
*/
var $C = function(a, b) {
return function(){
};
};
} else throw "align: not implemented";
},
/*
treeFitsInCanvas
Returns a Boolean if the current subtree fits in canvas.
Parameters:
node - A <Graph.Node> which is the current root of the subtree.
canvas - The <Canvas> object.
level - The depth of the subtree to be considered.
*/
});
}
});
/*
Class: ST.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
/*
Plots a subtree from the spacetree.
*/
if(scale >= 0) {
}
'withLabels': true,
'hideLabels': !!scale,
'plotSubtree': function(n, ch) {
}
}), animating);
},
/*
Method: getAlignedPos
Parameters:
pos - (object) A <Graph.Node> position.
width - (number) The width of the node.
height - (number) The height of the node.
*/
square = {
};
square = {
y: pos.y
};
} else {
square = {
x: pos.x,
};
}
square = {
};
} else {
square = {
};
}
} else throw "align: not implemented";
return square;
},
getOrientation: function(adj) {
}
return orn;
}
});
/*
Class: ST.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
ST.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
}
});
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
labelPos= {
};
labelPos= {
};
} else {
labelPos= {
};
}
labelPos= {
};
} else {
labelPos= {
};
}
} else throw "align: not implemented";
}
});
/*
ST.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz) {
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz) {
}
});
/*
Class: ST.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'circle', 'rectangle', 'ellipse' and 'square'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
ST.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty,
'contains': $.lambda(false)
},
'circle': {
},
}
},
'square': {
},
}
},
'ellipse': {
},
}
},
'rectangle': {
this.nodeHelper.rectangle.render('fill', {x:pos.x+width/2, y:pos.y+height/2}, width, height, canvas);
},
}
}
});
/*
Class: ST.Plot.EdgeTypes
This class contains a list of <Graph.Adjacence> built-in types.
Edge types implemented are 'none', 'line', 'arrow', 'quadratic:begin', 'quadratic:end', 'bezier'.
You can add your custom edge types, customizing your visualization to the extreme.
Example:
(start code js)
ST.Plot.EdgeTypes.implement({
'mySpecialType': {
'render': function(adj, canvas) {
//print your custom edge to canvas
},
//optional
'contains': function(adj, pos) {
//return true if pos is inside the arc or false otherwise
}
}
});
(end code)
*/
'none': $.empty,
'line': {
},
}
},
'arrow': {
},
}
},
'quadratic:begin': {
switch(orn) {
case "left":
break;
case "right":
break;
case "top":
break;
case "bottom":
break;
}
}
},
'quadratic:end': {
switch(orn) {
case "left":
break;
case "right":
break;
case "top":
break;
case "bottom":
break;
}
}
},
'bezier': {
switch(orn) {
case "left":
break;
case "right":
break;
case "top":
break;
case "bottom":
break;
}
}
}
});
/*
* File: AreaChart.js
*
*/
'areachart-stacked' : {
delta = 55;
function(v) { return (v * 0.85) >> 0; }));
}
if(border) {
function(v) { return (v * perc) >> 0; }));
} else {
}
}
}
if(aggValue !== false) {
ctx.fillText(aggValue !== true? aggValue : valAcum, x, y - acumLeft - config.labelOffset - label.size/2, width);
}
}
}
}
},
//bounding box check
return false;
}
//deep check
return {
'index': index
};
}
}
return false;
}
}
});
/*
Class: AreaChart
A visualization that displays stacked area charts.
Constructor Options:
See <Options.AreaChart>.
*/
st: null,
selected: {},
busy: false,
initialize: function(opt) {
this.controller = this.config =
}, opt);
//set functions for showLabels and showAggregates
this.config.showAggregates = typeAggregates == 'function'? showAggregates : $.lambda(showAggregates);
this.initializeViz();
},
initializeViz: function() {
that = this,
nodeLabels = {};
orientation: "bottom",
levelDistance: 0,
siblingOffset: 0,
subtreeOffset: 0,
Label: {
},
Node: {
overridable: true,
align: 'left',
width: 1,
height: 1
},
Edge: {
type: 'none'
},
Tips: {
type: 'Native',
force: true,
}
},
Events: {
enable: true,
type: 'Native',
},
if(!config.restoreOnRightClick) return;
},
if(!config.selectOnHover) return;
if(node) {
} else {
}
}
},
var nlbs = {
};
//store node labels
//append labels
}
}
}
},
} else {
}
if(aggValue !== false) {
} else {
}
wrapperStyle.width = aggregateStyle.width = labelStyle.width = domElement.style.width = width + 'px';
}
}
}
}
});
},
/*
Method: loadJSON
Loads JSON data into the visualization.
Parameters:
json - The JSON data format. This format is described in <http://blog.thejit.org/2010/04/24/new-javascript-infovis-toolkit-visualizations/#json-data-format>.
Example:
(start code js)
var areaChart = new $jit.AreaChart(options);
areaChart.loadJSON(json);
(end code)
*/
ch = [],
'data': {
'value': valArray,
'$valueArray': valArray,
'$colorArray': color,
'$stringArray': name,
'$config': config,
'$gradient': gradient
},
'children': []
});
}
var root = {
'name': '',
'data': {
'$type': 'none',
'$width': 1,
'$height': 1
},
'children': ch
};
this.normalizeDims();
if(animate) {
modes: ['node-property:height:dimArray'],
duration:1500
});
}
},
/*
Method: updateJSON
Use this method when updating values for the current JSON data. If the items specified by the JSON data already exist in the graph then their values will be updated.
Parameters:
json - (object) JSON data to be updated. The JSON format corresponds to the one described in <AreaChart.loadJSON>.
onComplete - (object) A callback object to be called when the animation transition when updating the data end.
Example:
(start code js)
areaChart.updateJSON(json, {
onComplete: function() {
alert('update complete!');
}
});
(end code)
*/
if(this.busy) return;
this.busy = true;
that = this,
hashValues = {};
//convert the whole thing into a hash
}
var v = hashValues[n.name],
if (v) {
a[0] = v.values[i];
});
}
if(next) {
v = hashValues[next];
if(v) {
a[1] = v.values[i];
});
}
}
});
this.normalizeDims();
if(animate) {
modes: ['node-property:height:dimArray'],
duration:1500,
onComplete: function() {
}
});
}
},
/*
Method: filter
Filter selected stacks, collapsing all other stacks. You can filter multiple stacks at the same time.
Parameters:
filters - (array) An array of strings with the name of the stacks to be filtered.
callback - (object) An object with an *onComplete* callback method.
Example:
(start code js)
areaChart.filter(['label A', 'label C'], {
onComplete: function() {
console.log('done!');
}
});
(end code)
See also:
<AreaChart.restore>.
*/
if(this.busy) return;
this.busy = true;
this.select(false, false, false);
var that = this;
this.normalizeDims();
}), 'end');
});
modes: ['node-property:dimArray'],
duration:1500,
onComplete: function() {
}
});
},
/*
Method: restore
Sets all stacks that could have been filtered visible.
Example:
(start code js)
areaChart.restore();
(end code)
See also:
<AreaChart.filter>.
*/
if(this.busy) return;
this.busy = true;
this.select(false, false, false);
this.normalizeDims();
var that = this;
modes: ['node-property:height:dimArray'],
duration:1500,
onComplete: function() {
}
});
},
//adds the little brown bar when hovering the node
if(!this.config.selectOnHover) return;
var s = this.selected;
n.setData('border', false);
});
if(id) {
n.setData('border', s);
if(link) {
if(n) {
n.setData('border', {
});
}
}
}
}
},
/*
Method: getLegend
Returns an object containing as keys the legend names and as values hex strings with color values.
Example:
(start code js)
var legend = areaChart.getLegend();
(end code)
*/
getLegend: function() {
var legend = {};
var n;
});
});
return legend;
},
/*
Method: getMaxValue
Returns the maximum accumulated value for the stacks. This method is used for normalizing the graph heights according to the canvas height.
Example:
(start code js)
var ans = areaChart.getMaxValue();
(end code)
In some cases it could be useful to override this method to normalize heights for a group of AreaCharts, like when doing small multiples.
Example:
(start code js)
//will return 100 for all AreaChart instances,
//displaying all of them with the same scale
$jit.AreaChart.implement({
'getMaxValue': function() {
return 100;
}
});
(end code)
*/
getMaxValue: function() {
var maxValue = 0;
acumLeft += +v[0];
acumRight += +v[1];
});
});
return maxValue;
},
normalizeDims: function() {
//number of elements
root.eachAdjacency(function() {
l++;
});
acumLeft += +v[0];
acumRight += +v[1];
});
if(animate) {
}), 'end');
if(!dimArray) {
}
} else {
}));
}
});
}
});
/*
* File: Options.BarChart.js
*
*/
/*
Object: Options.BarChart
<BarChart> options.
Other options included in the BarChart are <Options.Canvas>, <Options.Label>, <Options.Margin>, <Options.Tips> and <Options.Events>.
Syntax:
(start code js)
Options.BarChart = {
animate: true,
labelOffset: 3,
barsOffset: 0,
type: 'stacked',
hoveredColor: '#9fd4ff',
orientation: 'horizontal',
showAggregates: true,
showLabels: true
};
(end code)
Example:
(start code js)
var barChart = new $jit.BarChart({
animate: true,
barsOffset: 10,
type: 'stacked:gradient'
});
(end code)
Parameters:
animate - (boolean) Default's *true*. Whether to add animated transitions when filtering/restoring stacks.
offset - (number) Default's *25*. Adds margin between the visualization and the canvas.
labelOffset - (number) Default's *3*. Adds margin between the label and the default place where it should be drawn.
barsOffset - (number) Default's *0*. Separation between bars.
type - (string) Default's *'stacked'*. Stack or grouped styles. Posible values are 'stacked', 'grouped', 'stacked:gradient', 'grouped:gradient' to add gradients.
hoveredColor - (boolean|string) Default's *'#9fd4ff'*. Sets the selected color for a hovered bar stack.
orientation - (string) Default's 'horizontal'. Sets the direction of the bars. Possible options are 'vertical' or 'horizontal'.
showAggregates - (boolean, function) Default's *true*. Display the sum the values of each bar. Can also be a function that returns *true* or *false* to display the value of the bar or not. That same function can also return a string with the formatted data to be added.
showLabels - (boolean, function) Default's *true*. Display the name of the slots. Can also be a function that returns *true* or *false* for each bar to decide whether to show the label or not.
*/
$extend: true,
animate: true,
hoveredColor: '#9fd4ff',
orientation: 'horizontal',
showAggregates: true,
showLabels: true,
Tips: {
enable: false,
},
Events: {
enable: false,
}
};
/*
* File: BarChart.js
*
*/
'barchart-stacked' : {
opt = {},
if(gradient) {
var linear;
if(horz) {
} else {
}
function(v) { return (v * 0.5) >> 0; }));
}
if(horz) {
} else {
}
}
}
if(border) {
if(horz) {
} else {
}
}
if(aggValue !== false) {
if(horz) {
} else {
}
}
if(horz) {
} else {
}
}
}
}
},
//bounding box check
if(horz) {
return false;
}
} else {
return false;
}
}
//deep check
if(horz) {
return {
};
}
} else {
return {
};
}
}
}
return false;
}
},
'barchart-grouped' : {
opt = {},
if(gradient) {
var linear;
if(horz) {
} else {
}
function(v) { return (v * 0.5) >> 0; }));
}
if(horz) {
} else {
}
}
}
if(border) {
if(horz) {
} else {
}
}
if(aggValue !== false) {
if(horz) {
} else {
ctx.fillText(aggValue, x + width/2, y - Math.max.apply(null, dimArray) - label.size/2 - config.labelOffset);
}
}
if(horz) {
} else {
}
}
}
}
},
//bounding box check
if(horz) {
return false;
}
} else {
return false;
}
}
//deep check
if(horz) {
return {
};
}
} else {
return {
};
}
}
}
return false;
}
}
});
/*
Class: BarChart
A visualization that displays stacked bar charts.
Constructor Options:
See <Options.BarChart>.
*/
st: null,
selected: {},
busy: false,
initialize: function(opt) {
this.controller = this.config =
}, opt);
//set functions for showLabels and showAggregates
this.config.showAggregates = typeAggregates == 'function'? showAggregates : $.lambda(showAggregates);
this.initializeViz();
},
initializeViz: function() {
nodeLabels = {};
levelDistance: 0,
subtreeOffset: 0,
Label: {
},
Node: {
overridable: true,
align: 'left',
width: 1,
height: 1
},
Edge: {
type: 'none'
},
Tips: {
type: 'Native',
force: true,
}
},
Events: {
enable: true,
type: 'Native',
},
if(!config.hoveredColor) return;
if(node) {
} else {
}
}
},
var nlbs = {
};
//store node labels
//append labels
}
}
},
wrapperStyle.width = aggregateStyle.width = labelStyle.width = domElement.style.width = width + 'px';
if(dimArray[i] > 0) {
}
}
} else {
}
if(aggValue !== false) {
} else {
}
} else {
}
}
}
});
if(horz) {
} else {
}
},
/*
Method: loadJSON
Loads JSON data into the visualization.
Parameters:
json - The JSON data format. This format is described in <http://blog.thejit.org/2010/04/24/new-javascript-infovis-toolkit-visualizations/#json-data-format>.
Example:
(start code js)
var barChart = new $jit.BarChart(options);
barChart.loadJSON(json);
(end code)
*/
if(this.busy) return;
this.busy = true;
ch = [],
that = this;
var acum = 0;
'data': {
'value': valArray,
'$valueArray': valArray,
'$colorArray': color,
'$stringArray': name,
'$gradient': gradient,
'$config': config
},
'children': []
});
}
var root = {
'name': '',
'data': {
'$type': 'none',
'$width': 1,
'$height': 1
},
'children': ch
};
this.normalizeDims();
if(animate) {
if(horz) {
modes: ['node-property:width:dimArray'],
duration:1500,
onComplete: function() {
}
});
} else {
modes: ['node-property:height:dimArray'],
duration:1500,
onComplete: function() {
}
});
}
} else {
this.busy = false;
}
},
/*
Method: updateJSON
Use this method when updating values for the current JSON data. If the items specified by the JSON data already exist in the graph then their values will be updated.
Parameters:
json - (object) JSON data to be updated. The JSON format corresponds to the one described in <BarChart.loadJSON>.
onComplete - (object) A callback object to be called when the animation transition when updating the data end.
Example:
(start code js)
barChart.updateJSON(json, {
onComplete: function() {
alert('update complete!');
}
});
(end code)
*/
if(this.busy) return;
this.busy = true;
this.select(false, false, false);
var that = this;
if(n) {
}
}
});
this.normalizeDims();
if(animate) {
if(horz) {
modes: ['node-property:width:dimArray'],
duration:1500,
onComplete: function() {
}
});
} else {
modes: ['node-property:height:dimArray'],
duration:1500,
onComplete: function() {
}
});
}
}
},
//adds the little brown bar when hovering the node
if(!this.config.hoveredColor) return;
var s = this.selected;
n.setData('border', s);
} else {
n.setData('border', false);
}
});
}
},
/*
Method: getLegend
Returns an object containing as keys the legend names and as values hex strings with color values.
Example:
(start code js)
var legend = barChart.getLegend();
(end code)
*/
getLegend: function() {
var legend = {};
var n;
});
});
return legend;
},
/*
Method: getMaxValue
Returns the maximum accumulated value for the stacks. This method is used for normalizing the graph heights according to the canvas height.
Example:
(start code js)
var ans = barChart.getMaxValue();
(end code)
In some cases it could be useful to override this method to normalize heights for a group of BarCharts, like when doing small multiples.
Example:
(start code js)
//will return 100 for all BarChart instances,
//displaying all of them with the same scale
$jit.BarChart.implement({
'getMaxValue': function() {
return 100;
}
});
(end code)
*/
getMaxValue: function() {
acum = 0;
if(!valArray) return;
if(stacked) {
acum += +v;
});
} else {
}
});
return maxValue;
},
setBarType: function(type) {
},
normalizeDims: function() {
//number of elements
root.eachAdjacency(function() {
l++;
});
fixedDim = (size[horz? 'height':'width'] - (horz? marginHeight:marginWidth) - (l -1) * config.barsOffset) / l,
acum += +v;
});
if(animate) {
}), 'end');
if(!dimArray) {
}
} else {
}));
}
});
}
});
/*
* File: Options.PieChart.js
*
*/
/*
Object: Options.PieChart
<PieChart> options.
Other options included in the PieChart are <Options.Canvas>, <Options.Label>, <Options.Tips> and <Options.Events>.
Syntax:
(start code js)
Options.PieChart = {
animate: true,
offset: 25,
sliceOffset:0,
labelOffset: 3,
type: 'stacked',
hoveredColor: '#9fd4ff',
showLabels: true,
resizeLabels: false,
updateHeights: false
};
(end code)
Example:
(start code js)
var pie = new $jit.PieChart({
animate: true,
sliceOffset: 5,
type: 'stacked:gradient'
});
(end code)
Parameters:
animate - (boolean) Default's *true*. Whether to add animated transitions when plotting/updating the visualization.
offset - (number) Default's *25*. Adds margin between the visualization and the canvas.
sliceOffset - (number) Default's *0*. Separation between the center of the canvas and each pie slice.
labelOffset - (number) Default's *3*. Adds margin between the label and the default place where it should be drawn.
type - (string) Default's *'stacked'*. Stack style. Posible values are 'stacked', 'stacked:gradient' to add gradients.
hoveredColor - (boolean|string) Default's *'#9fd4ff'*. Sets the selected color for a hovered pie stack.
showLabels - (boolean) Default's *true*. Display the name of the slots.
resizeLabels - (boolean|number) Default's *false*. Resize the pie labels according to their stacked values. Set a number for *resizeLabels* to set a font size minimum.
updateHeights - (boolean) Default's *false*. Only for mono-valued (most common) pie charts. Resize the height of the pie slices according to their current values.
*/
$extend: true,
animate: true,
sliceOffset:0,
hoveredColor: '#9fd4ff',
Events: {
enable: false,
},
Tips: {
enable: false,
},
showLabels: true,
resizeLabels: false,
//only valid for mono-valued datasets
updateHeights: false
};
/*
* Class: Layouts.Radial
*
* Implements a Radial Layout.
*
* Implemented By:
*
* <RGraph>, <Hypertree>
*
*/
/*
* Method: compute
*
* Computes nodes' positions.
*
* Parameters:
*
* property - _optional_ A <Graph.Node> position property to store the new
* positions. Possible values are 'pos', 'end' or 'start'.
*
*/
var lengthFunc = this.createLevelDistanceFunc();
this.computeAngularWidths(prop);
},
/*
* computePositions
*
* Performs the main algorithm for computing node positions.
*/
}
begin : 0,
};
//Calculate the sum of all angular widths
//get max dim
}
}, "ignore");
//Maintain children order
//Second constraint for <http://bailando.sims.berkeley.edu/papers/infovis01.htm>
});
}
//Calculate nodes positions.
}
};
}
}
}, "ignore");
},
/*
* Method: setAngularWidthForNodes
*
* Sets nodes angular widths.
*/
setAngularWidthForNodes : function(prop) {
}, "ignore");
},
/*
* Method: setSubtreesAngularWidth
*
* Sets subtrees angular widths.
*/
setSubtreesAngularWidth : function() {
var that = this;
}, "ignore");
},
/*
* Method: setSubtreeAngularWidth
*
* Sets the angular width for a subtree.
*/
setSubtreeAngularWidth : function(elem) {
}, "ignore");
},
/*
* Method: computeAngularWidths
*
* Computes nodes and subtrees angular widths.
*/
computeAngularWidths : function(prop) {
this.setAngularWidthForNodes(prop);
this.setSubtreesAngularWidth();
}
});
/*
* File: Sunburst.js
*/
/*
Class: Sunburst
A radial space filling tree visualization.
Inspired by:
Sunburst <http://www.cc.gatech.edu/gvu/ii/sunburst/>.
Note:
This visualization was built and engineered from scratch, taking only the paper as inspiration, and only shares some features with the visualization described in the paper.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
interpolation - (string) Default's *linear*. Describes the way nodes are interpolated. Possible values are 'linear' and 'polar'.
levelDistance - (number) Default's *100*. The distance between levels of the tree.
Node.type - Described in <Options.Node>. Default's to *multipie*.
Node.height - Described in <Options.Node>. Default's *0*.
Edge.type - Described in <Options.Edge>. Default's *none*.
Label.textAlign - Described in <Options.Label>. Default's *start*.
Label.textBaseline - Described in <Options.Label>. Default's *middle*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <Sunburst.Op> instance.
fx - Access a <Sunburst.Plot> instance.
labels - Access a <Sunburst.Label> interface implementation.
*/
initialize: function(controller) {
var config = {
interpolation: 'linear',
levelDistance: 100,
Node: {
'type': 'multipie',
'height':0
},
Edge: {
'type': 'none'
},
Label: {
textAlign: 'start',
textBaseline: 'middle'
}
};
var canvasConfig = this.config;
if(canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Polar,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.json = null;
this.root = null;
this.rotated = null;
this.busy = false;
// initialize extras
this.initializeExtras();
},
/*
createLevelDistanceFunc
Returns the levelDistance function used for calculating a node distance
to its origin. This function returns a function that is computed
per level and not per node, such that all nodes with the same depth will have the
same distance to the origin. The resulting function gets the
parent node as parameter and returns a float.
*/
createLevelDistanceFunc: function() {
return function(elem) {
};
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function() {
this.compute();
this.plot();
},
/*
reposition
An alias for computing new positions to _endPos_
See also:
<Sunburst.compute>
*/
reposition: function() {
this.compute('end');
},
/*
Method: rotate
Rotates the graph so that the selected node is horizontal on the right.
Parameters:
node - (object) A <Graph.Node>.
method - (string) Whether to perform an animation or just replot the graph. Possible values are "replot" or "animate".
opt - (object) Configuration options merged with this visualization configuration options.
See also:
<Sunburst.rotateAngle>
*/
},
/*
Method: rotateAngle
Rotates the graph of an angle theta.
Parameters:
node - (object) A <Graph.Node>.
method - (string) Whether to perform an animation or just replot the graph. Possible values are "replot" or "animate".
opt - (object) Configuration options merged with this visualization configuration options.
See also:
<Sunburst.rotate>
*/
var that = this;
modes: [ 'polar' ]
});
if(method === 'animate') {
}
if (p.theta < 0) {
}
});
if (method == 'animate') {
} else if (method == 'replot') {
this.busy = false;
}
},
/*
Method: plot
Plots the Sunburst. This is a shortcut to *fx.plot*.
*/
plot: function() {
}
});
(function(Sunburst) {
/*
Class: Sunburst.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
Class: Sunburst.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
});
/*
Class: Sunburst.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
Sunburst.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
initialize: function(viz) {
},
return;
}
var ld = 0;
} else {
var indent = 5;
// get angle in degrees
if (cond) {
}
}
}
});
/*
Sunburst.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
if (bb) {
// center the label
// get polar coordinates
// get angle in degrees
if (cond) {
}
+ ' ' + y + ')');
}
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Class: Sunburst.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'pie', 'multipie', 'gradient-pie' and 'gradient-multipie'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
Sunburst.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty,
'contains': $.lambda(false),
if (begin < 0)
if (atan < 0)
} else {
}
}
},
'pie': {
false);
},
}
return false;
}
},
'multipie': {
true);
}
},
}
return false;
}
},
'gradient-multipie': {
$.each(colorArray, function(i) {
});
},
}
},
'gradient-pie': {
$.each(colorArray, function(i) {
});
},
}
}
});
/*
Class: Sunburst.Plot.EdgeTypes
This class contains a list of <Graph.Adjacence> built-in types.
Edge types implemented are 'none', 'line' and 'arrow'.
You can add your custom edge types, customizing your visualization to the extreme.
Example:
(start code js)
Sunburst.Plot.EdgeTypes.implement({
'mySpecialType': {
'render': function(adj, canvas) {
//print your custom edge to canvas
},
//optional
'contains': function(adj, pos) {
//return true if pos is inside the arc or false otherwise
}
}
});
(end code)
*/
'none': $.empty,
'line': {
},
}
},
'arrow': {
},
}
},
'hyperline': {
},
}
});
/*
* File: PieChart.js
*
*/
'piechart-stacked' : {
opt = {},
if(dimi <= 0) continue;
}
//fixing FF arc method + fill
}
}
if(border) {
//fixing FF arc method + fill
}
}
}
},
return {
};
}
}
}
return false;
}
return false;
}
}
});
/*
Class: PieChart
A visualization that displays stacked bar charts.
Constructor Options:
See <Options.PieChart>.
*/
sb: null,
selected: {},
busy: false,
initialize: function(opt) {
this.controller = this.config =
}, opt);
this.initializeViz();
},
initializeViz: function() {
Label: {
},
Node: {
overridable: true,
width: 1,
height: 1
},
Edge: {
type: 'none'
},
Tips: {
type: 'Native',
force: true,
}
},
Events: {
enable: true,
type: 'Native',
},
if(!config.hoveredColor) return;
if(node) {
} else {
}
}
},
if(config.showLabels) {
}
},
if(!config.showLabels) return;
if (dimArray) {
}
var labelPos = {
};
}
}
});
},
/*
Method: loadJSON
Loads JSON data into the visualization.
Parameters:
json - The JSON data format. This format is described in <http://blog.thejit.org/2010/04/24/new-javascript-infovis-toolkit-visualizations/#json-data-format>.
Example:
(start code js)
var pieChart = new $jit.PieChart(options);
pieChart.loadJSON(json);
(end code)
*/
ch = [],
'data': {
'value': valArray,
'$valueArray': valArray,
'$stringArray': name,
'$gradient': gradient,
'$config': config,
},
'children': []
});
}
var root = {
'name': '',
'data': {
'$type': 'none',
'$width': 1,
'$height': 1
},
'children': ch
};
this.normalizeDims();
if(animate) {
modes: ['node-property:dimArray'],
duration:1500
});
}
},
/*
Method: updateJSON
Use this method when updating values for the current JSON data. If the items specified by the JSON data already exist in the graph then their values will be updated.
Parameters:
json - (object) JSON data to be updated. The JSON format corresponds to the one described in <PieChart.loadJSON>.
onComplete - (object) A callback object to be called when the animation transition when updating the data end.
Example:
(start code js)
pieChart.updateJSON(json, {
onComplete: function() {
alert('update complete!');
}
});
(end code)
*/
if(this.busy) return;
this.busy = true;
var that = this;
if(n) {
}
}
});
this.normalizeDims();
if(animate) {
duration:1500,
onComplete: function() {
}
});
} else {
}
},
//adds the little brown bar when hovering the node
if(!this.config.hoveredColor) return;
var s = this.selected;
n.setData('border', s);
} else {
n.setData('border', false);
}
});
}
},
/*
Method: getLegend
Returns an object containing as keys the legend names and as values hex strings with color values.
Example:
(start code js)
var legend = pieChart.getLegend();
(end code)
*/
getLegend: function() {
var legend = {};
var n;
});
});
return legend;
},
/*
Method: getMaxValue
Returns the maximum accumulated value for the stacks. This method is used for normalizing the graph heights according to the canvas height.
Example:
(start code js)
var ans = pieChart.getMaxValue();
(end code)
In some cases it could be useful to override this method to normalize heights for a group of PieCharts, like when doing small multiples.
Example:
(start code js)
//will return 100 for all PieChart instances,
//displaying all of them with the same scale
$jit.PieChart.implement({
'getMaxValue': function() {
return 100;
}
});
(end code)
*/
getMaxValue: function() {
var maxValue = 0;
acum = 0;
acum += +v;
});
});
return maxValue;
},
normalizeDims: function() {
//number of elements
root.eachAdjacency(function() {
l++;
});
acum += +v;
});
if(animate) {
}), 'end');
if(!dimArray) {
}
} else {
}));
}
});
}
});
/*
* Class: Layouts.TM
*
* Implements TreeMaps layouts (SliceAndDice, Squarified, Strip).
*
* Implemented By:
*
* <TM>
*
*/
//set root position and dimensions
},
//compute children areas
var totalArea = 0;
par.eachSubnode(function(n) {
});
if(horizontal) {
orn = 'v';
dim = 'height';
pos = 'y';
pos2 = 'x';
pos2th = 0;
} else {
orn = 'h';
dim = 'width';
pos = 'x';
pos2 = 'y';
posth = 0;
}
ch.eachSubnode(function(n) {
});
}
});
/*
Method: compute
Called by loadJSON to calculate recursively all node positions and lay out the tree.
Parameters:
json - A JSON tree. See also <Loader.loadJSON>.
coord - A coordinates object specifying width, height, left and top style properties.
*/
//set root position and dimensions
//create a coordinates object
var coord = {
'width': offwdth,
};
},
/*
Method: computeDim
Computes dimensions and positions of a group of nodes
according to a custom layout row condition.
Parameters:
tail - An array of nodes.
initElem - An array of nodes (containing the initial node to be laid).
w - A fixed dimension where nodes will be layed out.
coord - A coordinates object specifying width, height, left and top style properties.
comp - A custom comparison function
*/
return;
}
}
return;
}
var c = tail[0];
} else {
}
},
/*
Method: worstAspectRatio
Calculates the worst aspect ratio of a group of rectangles.
See also:
Parameters:
ch - An array of nodes.
w - The fixed dimension where rectangles are being laid out.
Returns:
The worst aspect ratio.
*/
worstAspectRatio: function(ch, w) {
}
},
/*
Method: avgAspectRatio
Calculates the average aspect ratio of a group of rectangles.
See also:
Parameters:
ch - An array of nodes.
w - The fixed dimension where rectangles are being laid out.
Returns:
The average aspect ratio.
*/
avgAspectRatio: function(ch, w) {
var arSum = 0;
var h = area / w;
arSum += w > h? w / h : h / w;
}
return arSum / l;
},
/*
layoutLast
Performs the layout of the last computed sibling.
Parameters:
ch - An array of nodes.
w - A fixed dimension where nodes will be layed out.
coord - A coordinates object specifying width, height, left and top style properties.
*/
}
};
else
coord = {
'width': width,
'height': height,
'left': chipos.x
};
}
}
},
/*
Method: processChildrenLayout
Computes children real areas and other useful parameters for performing the Squarified algorithm.
Parameters:
par - The parent node of the json subtree.
ch - An Array of nodes
coord - A coordinates object specifying width, height, left and top style properties.
*/
//compute children real areas
for(i=0; i<l; i++) {
totalChArea += chArea[i];
}
for(i=0; i<l; i++) {
}
});
},
/*
Method: squarify
Performs an heuristic method to calculate div elements sizes in order to have a good aspect ratio.
Parameters:
tail - An array of nodes.
initElem - An array of nodes, containing the initial node to be laid out.
w - A fixed dimension where nodes will be laid out.
coord - A coordinates object specifying width, height, left and top style properties.
*/
},
/*
Method: layoutRow
Performs the layout of an array of nodes.
Parameters:
ch - An array of nodes.
w - A fixed dimension where nodes will be laid out.
coord - A coordinates object specifying width, height, left and top style properties.
*/
if(this.layout.horizontal()) {
} else {
}
},
top += h;
}
var ans = {
};
//take minimum side value.
return ans;
},
var totalArea = 0;
left = 0;
left += w;
}
var ans = {
};
return ans;
}
});
/*
Method: compute
Called by loadJSON to calculate recursively all node positions and lay out the tree.
Parameters:
json - A JSON subtree. See also <Loader.loadJSON>.
coord - A coordinates object specifying width, height, left and top style properties.
*/
coord = {
'width': width,
'height': height,
'left': chipos.x
};
}
}
},
/*
Method: processChildrenLayout
Computes children real areas and other useful parameters for performing the Strip algorithm.
Parameters:
par - The parent node of the json subtree.
ch - An Array of nodes
coord - A coordinates object specifying width, height, left and top style properties.
*/
//compute children real areas
for(i=0; i<l; i++) {
totalChArea += chArea[i];
}
for(i=0; i<l; i++) {
}
},
/*
Method: stripify
Performs an heuristic method to calculate div elements sizes in order to have
a good compromise between aspect ratio and order.
Parameters:
tail - An array of nodes.
initElem - An array of nodes.
w - A fixed dimension where nodes will be layed out.
coord - A coordinates object specifying width, height, left and top style properties.
*/
},
/*
Method: layoutRow
Performs the layout of an array of nodes.
Parameters:
ch - An array of nodes.
w - A fixed dimension where nodes will be laid out.
coord - A coordinates object specifying width, height, left and top style properties.
*/
if(this.layout.horizontal()) {
} else {
}
},
var totalArea = 0;
top += h;
}
return {
'dim': w
};
},
var totalArea = 0;
left = 0;
left += s;
}
return {
'dim': w
};
}
});
/*
* Class: Layouts.Icicle
*
* Implements the icicle tree layout.
*
* Implemented By:
*
* <Icicle>
*
*/
/*
* Method: compute
*
* Called by loadJSON to calculate all node positions.
*
* Parameters:
*
* posType - The nodes' position to compute. Either "start", "end" or
* "current". Defaults to "current".
*/
var treeDepth = 0;
if(this.layout.horizontal()) {
this.computeSubtree(startNode, -width/2, -height/2, width/(maxDepth+1), height, initialDepth, maxDepth, posType);
} else {
this.computeSubtree(startNode, -width/2, -height/2, width, height/(maxDepth+1), initialDepth, maxDepth, posType);
}
},
return;
if(this.layout.horizontal()) {
y += nodeLength;
} else {
x += nodeLength;
}
}
}
});
/*
* File: Icicle.js
*
*/
/*
Class: Icicle
Icicle space filling visualization.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
orientation - (string) Default's *h*. Whether to set horizontal or vertical layouts. Possible values are 'h' and 'v'.
offset - (number) Default's *2*. Boxes offset.
constrained - (boolean) Default's *false*. Whether to show the entire tree when loaded or just the number of levels specified by _levelsToShow_.
levelsToShow - (number) Default's *3*. The number of levels to show for a subtree. This number is relative to the selected node.
animate - (boolean) Default's *false*. Whether to animate transitions.
Node.type - Described in <Options.Node>. Default's *rectangle*.
Label.type - Described in <Options.Label>. Default's *Native*.
duration - Described in <Options.Fx>. Default's *700*.
fps - Described in <Options.Fx>. Default's *45*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <Icicle.Op> instance.
fx - Access a <Icicle.Plot> instance.
labels - Access a <Icicle.Label> interface implementation.
*/
layout: {
orientation: "h",
vertical: function(){
return this.orientation == "v";
},
horizontal: function(){
return this.orientation == "h";
},
change: function(){
}
},
initialize: function(controller) {
var config = {
animate: false,
orientation: "h",
offset: 2,
levelsToShow: Number.MAX_VALUE,
constrained: false,
Node: {
type: 'rectangle',
overridable: true
},
Edge: {
type: 'none'
},
Label: {
type: 'Native'
},
duration: 700,
fps: 45
};
"Events", "Navigation", "Controller", "Label");
var canvasConfig = this.config;
if (canvasConfig.useCanvas) {
} else {
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Complex,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.clickedNode = null;
this.initializeExtras();
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function(){
if(labelType != 'Native') {
var that = this;
}
this.compute();
this.plot();
},
/*
Method: plot
Plots the Icicle visualization. This is a shortcut to *fx.plot*.
*/
plot: function(){
},
/*
Method: enter
Sets the node as root.
Parameters:
node - (object) A <Graph.Node>.
*/
if (this.busy)
return;
this.busy = true;
var that = this,
var callback = {
onComplete: function() {
//compute positions of newly inserted nodes
'alpha': [1, 0] //fade nodes
});
}, "ignore");
duration: 500,
modes:['node-property:alpha'],
onComplete: function() {
duration: 1000,
onComplete: function() {
}
});
}
});
} else {
}
}
};
} else {
}
},
/*
Method: out
Sets the parent node of the current selected node as root.
*/
out: function(){
if(this.busy)
return;
var that = this,
previousClickedNode = this.clickedNode;
this.busy = true;
this.events.hoveredNode = false;
if(!parent) {
this.busy = false;
return;
}
//final plot callback
callback = {
onComplete: function() {
onComplete: function() {
}
});
} else {
}
}
};
//animate node positions
this.clickedNode = clickedNode;
this.compute('end');
//animate the visible subtree only
this.clickedNode = previousClickedNode;
duration: 1000,
onComplete: function() {
//animate the parent subtree
//change nodes alpha
'alpha': [0, 1]
});
}, "ignore");
duration: 500,
modes:['node-property:alpha'],
onComplete: function() {
}
});
}
});
} else {
}
},
if (this.config.constrained)
}
});
} else {
}
}
});
/*
Class: Icicle.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
* Performs operations on group of nodes.
*/
initialize: function(viz){
},
/*
* Calls the request method on the controller to request a subtree for each node.
*/
var complete = function(){
};
if (len == 0)
complete();
for(var i = 0; i < len; i++) {
type: 'nothing'
});
}
complete();
}
}
});
}
}
});
/*
Class: Icicle.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
'withLabels': true,
'hideLabels': false,
}
}), animating);
}
});
/*
Class: Icicle.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
Icicle.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
// Guess as much as possible if the label will fit in the node
return;
}
});
/*
Icicle.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Class: Icicle.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'rectangle'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
Icicle.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty
},
'rectangle': {
function(r) { return r * 0.3 >> 0; }));
}
if (border) {
}
},
if(this.viz.clickedNode && !$jit.Graph.Util.isDescendantOf(node, this.viz.clickedNode.id)) return false;
return this.nodeHelper.rectangle.contains({x: npos.x + width/2, y: npos.y + height/2}, pos, width, height);
}
}
});
'none': $.empty
});
/*
* File: Layouts.ForceDirected.js
*
*/
/*
* Class: Layouts.ForceDirected
*
* Implements a Force Directed Layout.
*
* Implemented By:
*
* <ForceDirected>
*
* Credits:
*
* Marcus Cobden <http://marcuscobden.co.uk>
*
*/
getOptions: function(random) {
//count nodes
var count = 0;
count++;
});
var l = this.config.levelDistance;
return {
width: w,
height: h,
tstart: w * 0.1,
edgef: function(x) { return /* x * x / k; */ k * (x - l); }
};
},
var opt = this.getOptions();
}
//initialize disp vector
n.disp = {};
});
});
});
},
if(incremental) {
(function iter() {
return;
}
}
})();
} else {
for(; i < times; i++) {
}
}
},
//calculate repulsive forces
//initialize disp
});
});
}
});
});
//calculate attractive forces
});
}
});
});
//arrange positions to fit the canvas
var p = u.getPos(p);
});
});
}
});
/*
* File: ForceDirected.js
*/
/*
Class: ForceDirected
A visualization that lays graphs using a Force-Directed layout algorithm.
Inspired by:
Force-Directed Drawing Algorithms (Stephen G. Kobourov) <http://www.cs.brown.edu/~rt/gdhandbook/chapters/force-directed.pdf>
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are two parameters
levelDistance - (number) Default's *50*. The natural length desired for the edges.
iterations - (number) Default's *50*. The number of iterations for the spring layout simulation. Depending on the browser's speed you could set this to a more 'interesting' number, like *200*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <ForceDirected.Op> instance.
fx - Access a <ForceDirected.Plot> instance.
labels - Access a <ForceDirected.Label> interface implementation.
*/
initialize: function(controller) {
var config = {
iterations: 50,
levelDistance: 50
};
var canvasConfig = this.config;
if(canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Complex,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.json = null;
this.busy = false;
// initialize extras
this.initializeExtras();
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function() {
this.compute();
this.plot();
},
reposition: function() {
this.compute('end');
},
/*
Method: computeIncremental
Performs the Force Directed algorithm incrementally.
Description:
ForceDirected algorithms can perform many computations and lead to JavaScript taking too much time to complete.
This method splits the algorithm into smaller parts allowing the user to track the evolution of the algorithm and
avoiding browser messages such as "This script is taking too long to complete".
Parameters:
opt - (object) The object properties are described below
iter - (number) Default's *20*. Split the algorithm into pieces of _iter_ iterations. For example, if the _iterations_ configuration property
of your <ForceDirected> class is 100, then you could set _iter_ to 20 to split the main algorithm into 5 smaller pieces.
property - (string) Default's *end*. Whether to update starting, current or ending node positions. Possible values are 'end', 'start', 'current'.
You can also set an array of these properties. If you'd like to keep the current node positions but to perform these
computations for final animation positions then you can just choose 'end'.
onStep - (function) A callback function called when each "small part" of the algorithm completed. This function gets as first formal
parameter a percentage value.
onComplete - A callback function called when the algorithm completed.
Example:
In this example I calculate the end positions and then animate the graph to those positions
(start code js)
var fd = new $jit.ForceDirected(...);
fd.computeIncremental({
iter: 20,
property: 'end',
onStep: function(perc) {
Log.write("loading " + perc + "%");
},
onComplete: function() {
Log.write("done");
fd.animate();
}
});
(end code)
In this example I calculate all positions and (re)plot the graph
(start code js)
var fd = new ForceDirected(...);
fd.computeIncremental({
iter: 20,
property: ['end', 'start', 'current'],
onStep: function(perc) {
Log.write("loading " + perc + "%");
},
onComplete: function() {
Log.write("done");
fd.plot();
}
});
(end code)
*/
computeIncremental: function(opt) {
iter: 20,
property: 'end',
onComplete: $.empty
}, opt || {});
},
/*
Method: plot
Plots the ForceDirected graph. This is a shortcut to *fx.plot*.
*/
plot: function() {
},
/*
Method: animate
Animates the graph from the current positions to the 'end' node positions.
*/
modes: [ 'linear' ]
}, opt || {}));
}
});
(function(ForceDirected) {
/*
Class: ForceDirected.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
Class: ForceDirected.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
});
/*
Class: ForceDirected.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
ForceDirected.Label = {};
/*
ForceDirected.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
});
/*
ForceDirected.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Label>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Class: ForceDirected.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'circle', 'triangle', 'rectangle', 'star', 'ellipse' and 'square'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
ForceDirected.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty,
'contains': $.lambda(false)
},
'circle': {
},
}
},
'ellipse': {
},
}
},
'square': {
},
}
},
'rectangle': {
},
}
},
'triangle': {
},
}
},
'star': {
},
}
}
});
/*
Class: ForceDirected.Plot.EdgeTypes
This class contains a list of <Graph.Adjacence> built-in types.
Edge types implemented are 'none', 'line' and 'arrow'.
You can add your custom edge types, customizing your visualization to the extreme.
Example:
(start code js)
ForceDirected.Plot.EdgeTypes.implement({
'mySpecialType': {
'render': function(adj, canvas) {
//print your custom edge to canvas
},
//optional
'contains': function(adj, pos) {
//return true if pos is inside the arc or false otherwise
}
}
});
(end code)
*/
'none': $.empty,
'line': {
},
}
},
'arrow': {
},
}
}
});
})($jit.ForceDirected);
/*
* File: Treemap.js
*
*/
/*
Class: TM.Base
Abstract class providing base functionality for <TM.Squarified>, <TM.Strip> and <TM.SliceAndDice> visualizations.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
orientation - (string) Default's *h*. Whether to set horizontal or vertical layouts. Possible values are 'h' and 'v'.
titleHeight - (number) Default's *13*. The height of the title rectangle for inner (non-leaf) nodes.
offset - (number) Default's *2*. Boxes offset.
constrained - (boolean) Default's *false*. Whether to show the entire tree when loaded or just the number of levels specified by _levelsToShow_.
levelsToShow - (number) Default's *3*. The number of levels to show for a subtree. This number is relative to the selected node.
animate - (boolean) Default's *false*. Whether to animate transitions.
Node.type - Described in <Options.Node>. Default's *rectangle*.
duration - Described in <Options.Fx>. Default's *700*.
fps - Described in <Options.Fx>. Default's *45*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <TM.Op> instance.
fx - Access a <TM.Plot> instance.
labels - Access a <TM.Label> interface implementation.
Inspired by:
Squarified Treemaps (Mark Bruls, Kees Huizing, and Jarke J. van Wijk) <http://www.win.tue.nl/~vanwijk/stm.pdf>
Tree visualization with tree-maps: 2-d space-filling approach (Ben Shneiderman) <http://hcil.cs.umd.edu/trs/91-03/91-03.html>
Note:
This visualization was built and engineered from scratch, taking only the paper as inspiration, and only shares some features with the visualization described in the paper.
*/
layout: {
orientation: "h",
vertical: function(){
return this.orientation == "v";
},
horizontal: function(){
return this.orientation == "h";
},
change: function(){
}
},
initialize: function(controller){
var config = {
orientation: "h",
titleHeight: 13,
offset: 2,
levelsToShow: 0,
constrained: false,
animate: false,
Node: {
type: 'rectangle',
overridable: true,
//we all know why this is not zero,
//right, Firefox?
width: 3,
height: 3,
color: '#444'
},
Label: {
textAlign: 'center',
textBaseline: 'top'
},
Edge: {
type: 'none'
},
duration: 700,
fps: 45
};
var canvasConfig = this.config;
if (canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Complex,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.clickedNode = null;
this.busy = false;
// initialize extras
this.initializeExtras();
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function(){
if(this.busy) return;
this.busy = true;
var that = this;
this.compute('end');
onComplete: function() {
}
}));
} else {
if(labelType != 'Native') {
var that = this;
}
this.busy = false;
this.compute();
this.plot();
}
},
/*
Method: plot
Plots the TreeMap. This is a shortcut to *fx.plot*.
*/
plot: function(){
},
/*
Method: leaf
Returns whether the node is a leaf.
Parameters:
n - (object) A <Graph.Node>.
*/
leaf: function(n){
return n.getSubnodes([
1, 1
},
/*
Method: enter
Sets the node as root.
Parameters:
n - (object) A <Graph.Node>.
*/
enter: function(n){
if(this.busy) return;
this.busy = true;
var that = this,
clickedNode = n,
previousClickedNode = this.clickedNode;
var callback = {
onComplete: function() {
//ensure that nodes are shown for that level
}
//compute positions of newly inserted nodes
//fade nodes
n.eachSubgraph(function(n) {
}, "ignore");
duration: 500,
modes:['node-property:alpha'],
onComplete: function() {
//compute end positions
//animate positions
//TODO(nico) commenting this line didn't seem to throw errors...
duration: 1000,
onComplete: function() {
//TODO(nico) check comment above
}
});
}
});
} else {
that.clickedNode = n;
}
}
};
} else {
}
},
/*
Method: out
Sets the parent node of the current selected node as root.
*/
out: function(){
if(this.busy) return;
this.busy = true;
this.events.hoveredNode = false;
var that = this,
previousClickedNode = this.clickedNode;
//if no parents return
if(!parent) {
this.busy = false;
return;
}
//final plot callback
callback = {
onComplete: function() {
onComplete: function() {
}
});
} else {
}
}
};
//prune tree
//animate node positions
this.clickedNode = clickedNode;
this.compute('end');
//animate the visible subtree only
this.clickedNode = previousClickedNode;
duration: 1000,
onComplete: function() {
//animate the parent subtree
//change nodes alpha
'alpha': [0, 1]
});
}, "ignore");
}, "ignore");
duration: 500,
modes:['node-property:alpha'],
onComplete: function() {
}
});
}
});
} else {
}
},
}
});
} else {
}
},
reposition: function() {
this.compute('end');
}
};
/*
Class: TM.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
initialize: function(viz){
}
});
//extend level methods of Graph.Geom
getRightLevelToShow: function() {
},
setRightLevelToShow: function(node) {
var level = this.getRightLevelToShow(),
if(d > level) {
n.drawn = false;
n.exist = false;
n.ignore = true;
} else {
n.drawn = true;
n.exist = true;
delete n.ignore;
}
});
}
});
/*
Performs operations on group of nodes.
*/
initialize: function(viz){
},
/*
Calls the request method on the controller to request a subtree for each node.
*/
var complete = function(){
};
if (len == 0)
complete();
for ( var i = 0; i < len; i++) {
type: 'nothing'
});
}
complete();
}
}
});
}
}
});
/*
Class: TM.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
initialize: function(viz){
},
this.plotTree(graph.getNode(viz.clickedNode && viz.clickedNode.id || viz.root), $.merge(viz.config, opt || {}, {
'withLabels': true,
'hideLabels': false,
'plotSubtree': function(n, ch){
return n.anySubnode("exist");
}
}), animating);
}
});
/*
Class: TM.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
TM.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
initialize: function(viz) {
},
y = pos.y;
}
});
/*
TM.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
}
});
/*
Class: TM.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'rectangle'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
TM.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty
},
'rectangle': {
if (leaf) {
function(r) { return r * 0.2 >> 0; }));
}
if(border) {
}
} else if(titleHeight > 0){
titleHeight - offst);
if(border) {
}
}
},
if(this.viz.clickedNode && !node.isDescendantOf(this.viz.clickedNode.id) || node.ignore) return false;
return this.nodeHelper.rectangle.contains({x: npos.x + width/2, y: npos.y + height/2}, pos, width, height);
}
}
});
'none': $.empty
});
/*
Class: TM.SliceAndDice
A slice and dice TreeMap visualization.
Implements:
All <TM.Base> methods and properties.
*/
Implements: [
]
});
/*
Class: TM.Squarified
A squarified TreeMap visualization.
Implements:
All <TM.Base> methods and properties.
*/
Implements: [
]
});
/*
Class: TM.Strip
A strip TreeMap visualization.
Implements:
All <TM.Base> methods and properties.
*/
Implements: [
]
});
/*
* File: RGraph.js
*
*/
/*
Class: RGraph
A radial graph visualization with advanced animations.
Inspired by:
Animated Exploration of Dynamic Graphs with Radial Layout (Ka-Ping Yee, Danyel Fisher, Rachna Dhamija, Marti Hearst) <http://bailando.sims.berkeley.edu/papers/infovis01.htm>
Note:
This visualization was built and engineered from scratch, taking only the paper as inspiration, and only shares some features with the visualization described in the paper.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
interpolation - (string) Default's *linear*. Describes the way nodes are interpolated. Possible values are 'linear' and 'polar'.
levelDistance - (number) Default's *100*. The distance between levels of the tree.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <RGraph.Op> instance.
fx - Access a <RGraph.Plot> instance.
labels - Access a <RGraph.Label> interface implementation.
*/
Implements: [
],
initialize: function(controller){
var config = {
interpolation: 'linear',
levelDistance: 100
};
var canvasConfig = this.config;
if(canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Polar,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.json = null;
this.root = null;
this.busy = false;
this.parent = false;
// initialize extras
this.initializeExtras();
},
/*
createLevelDistanceFunc
Returns the levelDistance function used for calculating a node distance
to its origin. This function returns a function that is computed
per level and not per node, such that all nodes with the same depth will have the
same distance to the origin. The resulting function gets the
parent node as parameter and returns a float.
*/
createLevelDistanceFunc: function(){
return function(elem){
};
},
/*
Method: refresh
Computes positions and plots the tree.
*/
refresh: function(){
this.compute();
this.plot();
},
reposition: function(){
this.compute('end');
},
/*
Method: plot
Plots the RGraph. This is a shortcut to *fx.plot*.
*/
plot: function(){
},
/*
getNodeAndParentAngle
Returns the _parent_ of the given node, also calculating its angle span.
*/
getNodeAndParentAngle: function(id){
var theta = false;
var ps = n.getParents();
if (p) {
if (theta < 0)
}
return {
parent: p,
};
},
/*
tagChildren
Enumerates the children in order to maintain child ordering (second constraint of the paper).
*/
var adjs = [];
}, "ignore");
;
}
}
},
/*
Method: onClick
Animates the <RGraph> to center the node specified by *id*.
Parameters:
id - A <Graph.Node> id.
opt - (optional|object) An object containing some extra properties described below
hideLabels - (boolean) Default's *true*. Hide labels when performing the animation.
Example:
(start code js)
rgraph.onClick('someid');
//or also...
rgraph.onClick('someid', {
hideLabels: false
});
(end code)
*/
this.busy = true;
var that = this;
// second constraint
this.compute('end');
// first constraint
});
onComplete: $.empty
}, opt || {});
hideLabels: true,
modes: [
]
}, opt, {
onComplete: function(){
opt.onComplete();
}
}));
}
}
});
(function(RGraph){
/*
Class: RGraph.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
Class: RGraph.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
});
/*
Object: RGraph.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
RGraph.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
});
/*
RGraph.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz){
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Class: RGraph.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'circle', 'triangle', 'rectangle', 'star', 'ellipse' and 'square'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
RGraph.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty,
'contains': $.lambda(false)
},
'circle': {
},
}
},
'ellipse': {
},
}
},
'square': {
},
}
},
'rectangle': {
},
}
},
'triangle': {
},
}
},
'star': {
},
}
}
});
/*
Class: RGraph.Plot.EdgeTypes
This class contains a list of <Graph.Adjacence> built-in types.
Edge types implemented are 'none', 'line' and 'arrow'.
You can add your custom edge types, customizing your visualization to the extreme.
Example:
(start code js)
RGraph.Plot.EdgeTypes.implement({
'mySpecialType': {
'render': function(adj, canvas) {
//print your custom edge to canvas
},
//optional
'contains': function(adj, pos) {
//return true if pos is inside the arc or false otherwise
}
}
});
(end code)
*/
'none': $.empty,
'line': {
},
}
},
'arrow': {
},
}
}
});
/*
* File: Hypertree.js
*
*/
/*
Complex
A multi-purpose Complex Class with common methods. Extended for the Hypertree.
*/
/*
moebiusTransformation
Calculates a moebius transformation for this point / complex.
For more information go to:
Parameters:
c - An initialized Complex instance representing a translation Vector.
*/
den.x++;
};
/*
moebiusTransformation
Calculates a moebius transformation for the hyperbolic tree.
Parameters:
graph - A <Graph> instance.
pos - A <Complex>.
prop - A property array.
theta - Rotation angle.
startPos - _optional_ start position.
*/
}
}, flags);
};
/*
Class: Hypertree
Inspired by:
A Focus+Context Technique Based on Hyperbolic Geometry for Visualizing Large Hierarchies (John Lamping, Ramana Rao, and Peter Pirolli).
Note:
This visualization was built and engineered from scratch, taking only the paper as inspiration, and only shares some features with the Hypertree described in the paper.
Implements:
All <Loader> methods
Constructor Options:
Inherits options from
- <Options.Canvas>
- <Options.Controller>
- <Options.Node>
- <Options.Edge>
- <Options.Label>
- <Options.Events>
- <Options.Tips>
- <Options.NodeStyles>
- <Options.Navigation>
Additionally, there are other parameters and some default values changed
radius - (string|number) Default's *auto*. The radius of the disc to plot the <Hypertree> in. 'auto' will take the smaller value from the width and height canvas dimensions. You can also set this to a custom value, for example *250*.
offset - (number) Default's *0*. A number in the range [0, 1) that will be substracted to each node position to make a more compact <Hypertree>. This will avoid placing nodes too far from each other when a there's a selected node.
fps - Described in <Options.Fx>. It's default value has been changed to *35*.
duration - Described in <Options.Fx>. It's default value has been changed to *1500*.
Edge.type - Described in <Options.Edge>. It's default value has been changed to *hyperline*.
Instance Properties:
canvas - Access a <Canvas> instance.
graph - Access a <Graph> instance.
op - Access a <Hypertree.Op> instance.
fx - Access a <Hypertree.Plot> instance.
labels - Access a <Hypertree.Label> interface implementation.
*/
initialize: function(controller) {
var config = {
radius: "auto",
offset: 0,
Edge: {
type: 'hyperline'
},
duration: 1500,
fps: 35
};
var canvasConfig = this.config;
if(canvasConfig.useCanvas) {
} else {
if(canvasConfig.background) {
type: 'Circles'
}, canvasConfig.background);
}
this.config.labelContainer = (typeof canvasConfig.injectInto == 'string'? canvasConfig.injectInto : canvasConfig.injectInto.id) + '-label';
}
this.graphOptions = {
'klass': Polar,
'Node': {
'selected': false,
'exist': true,
'drawn': true
}
};
this.json = null;
this.root = null;
this.busy = false;
// initialize extras
this.initializeExtras();
},
/*
createLevelDistanceFunc
Returns the levelDistance function used for calculating a node distance
to its origin. This function returns a function that is computed
per level and not per node, such that all nodes with the same depth will have the
same distance to the origin. The resulting function gets the
parent node as parameter and returns a float.
*/
createLevelDistanceFunc: function() {
// get max viz. length.
var r = this.getRadius();
// get max depth.
}, "ignore");
depth++;
// node distance generator
var genDistFunc = function(a) {
return function(node) {
while (d) {
}
};
};
// estimate better edge length.
for ( var i = 0.51; i <= 1; i += 0.01) {
}
return genDistFunc(0.75);
},
/*
Method: getRadius
Returns the current radius of the visualization. If *config.radius* is *auto* then it
calculates the radius by taking the smaller size of the <Canvas> widget.
See also:
<Canvas.getSize>
*/
getRadius: function() {
},
/*
Method: refresh
Computes positions and plots the tree.
Parameters:
reposition - (optional|boolean) Set this to *true* to force all positions (current, start, end) to match.
*/
refresh: function(reposition) {
if (reposition) {
this.reposition();
});
} else {
this.compute();
}
this.plot();
},
/*
reposition
Computes nodes' positions and restores the tree to its previous position.
For calculating nodes' positions the root must be placed on its origin. This method does this
and then attemps to restore the hypertree to its previous position.
*/
reposition: function() {
this.compute('end');
'end', "ignore");
}
});
},
/*
Method: plot
Plots the <Hypertree>. This is a shortcut to *fx.plot*.
*/
plot: function() {
},
/*
Method: onClick
Animates the <Hypertree> to center the node specified by *id*.
Parameters:
id - A <Graph.Node> id.
opt - (optional|object) An object containing some extra properties described below
hideLabels - (boolean) Default's *true*. Hide labels when performing the animation.
Example:
(start code js)
ht.onClick('someid');
//or also...
ht.onClick('someid', {
hideLabels: false
});
(end code)
*/
},
/*
Method: move
Translates the tree to the given position.
Parameters:
pos - (object) A *x, y* coordinate object where x, y in [0, 1), to move the tree to.
opt - This object has been defined in <Hypertree.onClick>
Example:
(start code js)
ht.move({ x: 0, y: 0.7 }, {
hideLabels: false
});
(end code)
*/
this.busy = true;
onComplete: $.empty
}, opt || {});
modes: [ 'moebius' ],
hideLabels: true
}, opt, {
onComplete: function() {
opt.onComplete();
}
}), versor);
}
}
});
(function(Hypertree) {
/*
Class: Hypertree.Op
Custom extension of <Graph.Op>.
Extends:
All <Graph.Op> methods
See also:
<Graph.Op>
*/
});
/*
Class: Hypertree.Plot
Custom extension of <Graph.Plot>.
Extends:
All <Graph.Plot> methods
See also:
<Graph.Plot>
*/
});
/*
Object: Hypertree.Label
Custom extension of <Graph.Label>.
Contains custom <Graph.Label.SVG>, <Graph.Label.HTML> and <Graph.Label.Native> extensions.
Extends:
All <Graph.Label> methods and subclasses.
See also:
<Graph.Label>, <Graph.Label.Native>, <Graph.Label.HTML>, <Graph.Label.SVG>.
*/
/*
Hypertree.Label.Native
Custom extension of <Graph.Label.Native>.
Extends:
All <Graph.Label.Native> methods
See also:
<Graph.Label.Native>
*/
initialize: function(viz) {
},
}
});
/*
Hypertree.Label.SVG
Custom extension of <Graph.Label.SVG>.
Extends:
All <Graph.Label.SVG> methods
See also:
<Graph.Label.SVG>
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Custom extension of <Graph.Label.HTML>.
Extends:
All <Graph.Label.HTML> methods.
See also:
*/
initialize: function(viz) {
},
/*
placeLabel
Overrides abstract method placeLabel in <Graph.Plot>.
Parameters:
tag - A DOM label element.
node - A <Graph.Node>.
controller - A configuration/controller object passed to the visualization.
*/
var labelPos = {
};
}
});
/*
Class: Hypertree.Plot.NodeTypes
This class contains a list of <Graph.Node> built-in types.
Node types implemented are 'none', 'circle', 'triangle', 'rectangle', 'star', 'ellipse' and 'square'.
You can add your custom node types, customizing your visualization to the extreme.
Example:
(start code js)
Hypertree.Plot.NodeTypes.implement({
'mySpecialType': {
'render': function(node, canvas) {
//print your custom node to canvas
},
//optional
'contains': function(node, pos) {
//return true if pos is inside the node or false otherwise
}
}
});
(end code)
*/
'none': {
'render': $.empty,
'contains': $.lambda(false)
},
'circle': {
if (dim > 0.2) {
}
},
}
},
'ellipse': {
},
}
},
'square': {
if (dim > 0.2) {
}
},
}
},
'rectangle': {
}
},
}
},
'triangle': {
if (dim > 0.2) {
}
},
}
},
'star': {
if (dim > 0.2) {
}
},
}
}
});
/*
Class: Hypertree.Plot.EdgeTypes
This class contains a list of <Graph.Adjacence> built-in types.
Edge types implemented are 'none', 'line', 'arrow' and 'hyperline'.
You can add your custom edge types, customizing your visualization to the extreme.
Example:
(start code js)
Hypertree.Plot.EdgeTypes.implement({
'mySpecialType': {
'render': function(adj, canvas) {
//print your custom edge to canvas
},
//optional
'contains': function(adj, pos) {
//return true if pos is inside the arc or false otherwise
}
}
});
(end code)
*/
'none': $.empty,
'line': {
},
this.edgeHelper.line.contains({x:from.x*r, y:from.y*r}, {x:to.x*r, y:to.y*r}, pos, this.edge.epsilon);
}
},
'arrow': {
},
this.edgeHelper.arrow.contains({x:from.x*r, y:from.y*r}, {x:to.x*r, y:to.y*r}, pos, this.edge.epsilon);
}
},
'hyperline': {
},
'contains': $.lambda(false)
}
});
})();