return;
}
if (ann[i].icon &&
- !(ann[i].hasOwnProperty('iconWidth') &&
- ann[i].hasOwnProperty('iconHeight'))) {
- this.dygraph_.error("Must set iconWidth and iconHeight when setting " +
+ !(ann[i].hasOwnProperty('width') &&
+ ann[i].hasOwnProperty('height'))) {
+ this.dygraph_.error("Must set width and height when setting " +
"annotation.icon property");
return;
}
if (a.hasOwnProperty('icon')) {
var img = document.createElement("img");
img.src = a.icon;
- img.width = width = a.iconWidth;
- img.height = height = a.iconHeight;
+ img.width = width;
+ img.height = height;
div.appendChild(img);
} else if (p.annotation.hasOwnProperty('shortText')) {
div.appendChild(document.createTextNode(p.annotation.shortText));
return "(" + ann.series + ", " + ann.x + ")";
}
- g = new DateGraph(
+ g = new Dygraph(
document.getElementById("g"),
function() {
var zp = function(x) { if (x < 10) return "0"+x; else return x; };
series: 'another line',
x: "20061013",
icon: 'dollar.png',
- iconWidth: 18,
- iconHeight: 23,
+ width: 18,
+ height: 23,
tickHeight: 4,
text: 'Another one',
cssClass: 'annotation',