ToolTip - position issue
Posted: Wed Jan 04, 2017 2:18 pm
Hi,
Tooltip window is not displaying near selected mouse pointer as shown in the attached screenshot. The gap increases ( between tooltip window and selected mouse pointer) when we move the cursor to right of the graph.
Below is the code what we have added to customize the tooltip appearance. Can you please guide to resolve this issue?
Tooltip window is not displaying near selected mouse pointer as shown in the attached screenshot. The gap increases ( between tooltip window and selected mouse pointer) when we move the cursor to right of the graph.
Below is the code what we have added to customize the tooltip appearance. Can you please guide to resolve this issue?
Code: Select all
var tip = new Tee.ToolTip(chart1);
tip.animated = 0;
tip.delay = 0;
tip.autoHide = false;
tip.visible = true;
tip.render = "dom";
tip.domStyle = "padding-left:8px; padding-right:8px; padding-top:0px; padding-bottom:4px; margin-left:5px !important; margin-top:0px;";
tip.domStyle = tip.domStyle + "background-color:#FCFCFC !important; border-radius:4px 4px; color:#FFF; ";
tip.domStyle = tip.domStyle + "border-style:solid;border-color:#A3A3AF;border-width:3; z-index:1115;";