Hi,
I'm using `SfNumericEntry` in a .NET MAUI app and need a calculator-style numeric input — where digits are entered right-to-left with fixed decimal positions:
0,00
0,01 ← typed "1"
0,15 ← typed "5"
1,52 ← typed "2"
0,15 ← pressed Backspace (removes one digit, not the whole value)
I went through the available properties (`CustomFormat`, `Value`, `AllowNull`, `Minimum`, `Maximum`) but couldn't find anything that enables this behavior natively.
My questions:
1. Is there a built-in property or mode on `SfNumericEntry` that supports this right-to-left digit input?
2. If not, what is the recommended approach for numeric inputs with fixed decimal positions in MAUI using Syncfusion?
Thanks!