I am having a bit of a hard time getting event area bubbles to work on mouse over. Not sure what I am doing wrong. code is effectively as follows. Is there something I am missing?
var myAreaBubble = new DayPilot.Bubble({
onLoad: function(args) {
args.html = "this is my area bubble";
}
});
...
dp.events.list.push({
id: "myevent",
areas: [
{
id: "myarea",
action: "Bubble",
bubble: myAreaBubble
}
]
});