You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NumericUpDown does not suit our needs, we need invariant culture ScientificNumericUpDown with support for TSL numbers notation, engineering notation, variable increment based on current value etc
We have one implementation which we are only using for ChartArea right now but it has some problems
Problems with current implementation:
Randomly appearing stack overflow exception in ScientificNumericUpDown in languages with other decimal dot than . (polish, deutsch has , )
ScientificNumericUpDown is working bad with increment near small values, do we even need small values?
make it more configurable (especially it's increment behavior).
The text was updated successfully, but these errors were encountered:
Now that #37 is resolved we could start with this. The idea is however to make this ScientificNumericUpDown more configurable (especially it's increment behavior).
working bad with increment near small values was resolved by implementing Epsilon property which makes it configurable how close to 0 value is allowed to go before it becomes 0
increment / UpDown behavior is now configurable - old one is adaptive, there are new ones: addition and multiplication
Current situation:
Problems with current implementation:
The text was updated successfully, but these errors were encountered: