Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1192
Flickering issue on ToolTip mouse hover in LinearGauge Chart
posted

Hi,

I am facing Flickering issue on mouse hover of ToolTip in LinearGauge Chart in IgniteUI.

$('#' + igniteGraphModel.graphDivId).igLinearGauge({
height: "50px",
width: "100%",
minimumValue: igniteGraphModel.data.MinimumValue,
maximumValue: igniteGraphModel.data.MaximumValue,
needleName: igniteGraphModel.data.ToolTipValue,
value: igniteGraphModel.data.Value,
minorTickEndExtent: 0,
minorTickStartExtent: 0,
interval: 6,
labelExtent: -0.5,
tickBrush: "white",
tickStrokeThickness: 3,
showToolTip: true,
needleToolTipTemplate: "<div class='ui-lineargauge-needle-tooltip'>Current Percentage: ${item.name}</div>",
showToolTipTimeout: 500,
needleBrush: 'blue',
needleBreadth: 4,
ranges: GetRangesArray(igniteGraphModel.data.Ranges)

});