-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Format Integers with commas #1877
Comments
Maybe a little late but I ran into the same issue and solved it by casting the id-column to char. |
V4 includes the ability to configure how each column is rendered, so you can control whether you want the commas in integers or not. |
@arikfr how to configure how each column is rendered |
Currently we are using V5 but I cant seem to find the parameter to check rendering. |
Bump. Where do we configure this? |
Its actually in the organization table in the database. You will have to edit that table entry. Redash stores this setting on startup. For fresh installs only --> REDASH_INTEGER_FORMAT="00" This will remove the commas in the formatter. |
this solves my problem.. thx! |
@faridskyman: as @masterlittle suggested you can update the UPDATE organizations SET settings = jsonb_set(settings::jsonb, '{settings,float_format}', '"0.0"', true);
UPDATE organizations SET settings = jsonb_set(settings::jsonb, '{settings,integer_format}', '"0"', true); |
Hello,
Our users complains about the integers are shown with comma.
Example
Where id is
INT(11) unsigned
Result is
21,668
Do you know if we can fix it quickly?
Thanks
Max.
The text was updated successfully, but these errors were encountered: