ToniaDemchuk

Results 6 comments of ToniaDemchuk

Still reproduces in 14.2.4 version when moving mouse down and leave trigger element: ![Screen Recording 2022-10-06 at 13 24 34](https://user-images.githubusercontent.com/19282629/194293763-62952eeb-4449-4de5-a096-c46bc6c094ca.gif)

Tooltip interactivity makes sense if showDelay time has reached and I left. But the issue is that showDelay time has not reached, so the tooltip should not be shown regardless...

Thanks for response, disableTooltipInteractivity makes the trick for me now, I will make issue later.

The problem is when you have some decimal numbers like `0.1` the `.ToString()` will produce different results depending on current culture `stream.WriteLine(y[i].ToString()); //"0.1" with dot in en-US` `stream.WriteLine(y[i].ToString()); //"0,1" with...

ToString() is equivalent to ToString(CultureInfo.CurrentCulture) So using ToString(CultureInfo.InvariantCulture) instead of ToString().Replace ( ',', '.') will be faster and consistent.

Can we at least have interfaces instead of classes with internal constructors (for UpsertCommandBuilder)?