Support discipline labels

Support display order for the Scimap circles
Support custom tooltip
Add % information on click action
Add info text
Add numerical information for mapped, total publications
Set default map view to 554 Sub-Discipline
Enable labels by default
This commit is contained in:
kongchinhua 2011-06-03 21:45:47 +00:00
parent 589a5cf09a
commit 815ef7f26e
32 changed files with 429 additions and 51 deletions

View file

@ -57,7 +57,7 @@ var CircleSizeCoder = Class.extend({
},
options: {
minRadius: 0.8,
maxRadius: 100.0,//100.0,
maxRadius: 100.0,
scaler: new Scaler({})
},
getSize: function(value) {
@ -71,6 +71,9 @@ var CircleSizeCoder = Class.extend({
}
return radius;
},
getMaxValue: function() {
return this.options.scaler.options.maxValue;
}
});