1. Added dynamic reload of data instead of page refresh, for temporal graph vis.

2. Added link-textbox for viz of each parameter form the dropdown box in temporal vis.
3. Made sure that the choices are preserved when another option is selected from the dropdown box.
4. Refactor of some legacy front-end code for temporal vis.
5. Added legend for bars drawn below the graph.
6. Formatted the last cached at date time.
This commit is contained in:
cdtank 2011-03-31 15:37:32 +00:00
parent a47a480552
commit f7452b1bce
15 changed files with 519 additions and 170 deletions

View file

@ -37,8 +37,8 @@ var globalDateObject;
var year;
var colors, prevColor, colorToAssign,
colorToRemove, renderedObjects, labelToEntityRecord,
setOfLabels, labelToCheckedEntities, stopWordsToCount;
colorToRemove, renderedObjects, URIToEntityRecord,
setOfLabels, URIToCheckedEntities, stopWordsToCount;
var graphContainer;
var tableDiv;
@ -66,9 +66,9 @@ function initConstants() {
prevColor = {};
colorToAssign, colorToRemove;
renderedObjects = [];
labelToEntityRecord = {};
URIToEntityRecord = {};
setOfLabels = [];
labelToCheckedEntities = {};
URIToCheckedEntities = {};
stopWordsToCount = {};
lastCachedAtDateTimes = [];
//options for Flot
@ -100,7 +100,5 @@ function initConstants() {
borderColor : "#D9D9D9"
}
};
FlotOptions.colors = colorConstantQueue;
}