Hide Tooltip on Scroll bar
New DiscussionHi, I have a composite chart which contains 2 scatter charts.Tooltip for the chart is assigned by using the below code.ChartCtrl.Tooltips.FormatString = “<ITEM_LABEL> – (<DATA_VALUE_X:0.00> , <DATA_VALUE_Y:0.00>)”;Also scrol bars for the Chart has been enabled by the following codeaxisX.ScrollScale.Visible = true;axisX.ScrollScale.Scale = 1; axisX.ScrollScale.Scroll = 0;I need to fix the below problems.1. When I move the mouse on the scroll bar I get the last tooltip text shown on the chart. I need to supress the tooltip text on the scroll bar.2. When the chart is zoomed using the scroll bar, I need to navigate using the scroll bar itself rather than clicking on the 2 arrows located on the extremes.Infragistics Version 7.2Thanks in advance