Hi Eric,
Thank you for contacting Syncfusion Support.
We hope you are using the MYSQL data source and tried to change the data column from Text to Number. If you want to change the data from ‘7,5’ to ‘7.5’, then currently, it is not possible in design view but it can be achieved through query view by doing some modification in query. You can use the below expression for particular column in query view to achieve your requirement.
(CASE WHEN (REPLACE(`reporting_checklist_17_nl_NL`.`DefaultQuestion945`,',',".")) REGEXP '^[0-9]+\.?[0-9]*$' THEN (0.0 + REPLACE(`reporting_checklist_17_nl_NL`.`DefaultQuestion945`,',',".")) ELSE NULL END) AS `reporting_checklist_17_nl_NL_DefaultQuestion945`
Regards,
Anandaraj R