The way in which the range annotation tooltip is configured has changed. A new subcomponent (a wrapper around jQuery's tooltip) is used for this, and the configuration options are specified within a new tooltip option. If you used... | You'll now use... |
---|
Code Block |
---|
|
var opts = {
tooltipDelay: 150,
tooltipId: "myTooltip",
styles: {
tooltip: ".annotTooltip"
}
};
|
| Code Block |
---|
|
var opts = {
tooltip: {
delay: 150
styles: {
tooltip: ".annotTooltip"
}
// no id is required
}
}; |
|
|