Hello,
In other Blazor UI providers such as DevExpress, telerik, by using following code, we can easily format decimal to indian curreny. eg ₹ 37,70,624.00
var varCulture = new CultureInfo("en-IN");
CultureInfo.DefaultThreadCurrentCulture = varCulture;
does syncfusion blazor controls support the same ? what will be the easiest way to have indian currency format on a single page??