Atozed Forums
IWChart Localization - Printable Version

+- Atozed Forums (https://www.atozed.com/forums)
+-- Forum: Atozed Software (https://www.atozed.com/forums/forum-1.html)
+--- Forum: IntraWeb (https://www.atozed.com/forums/forum-3.html)
+---- Forum: English (https://www.atozed.com/forums/forum-16.html)
+----- Forum: IntraWeb General Discussion (https://www.atozed.com/forums/forum-4.html)
+----- Thread: IWChart Localization (/thread-4727.html)



IWChart Localization - pindischan - 11-25-2024

Hello,
I need to localize IWChart to Czech language. I need the timeline (X-axis)
and the description of the points not to be in English, but in Czech language. How does the "Locale" property work?
Thanks

IWChartJS.XScale.ScaleType := stTime;
IWChartJS.XScale.TimeUnit := '';

??? IWChartJS.Locale := ???


RE: IWChart Localization - Elwoodandler - 04-21-2025

Hey, I had the same issue before — you just need to set
Code:
IWChartJS.Locale := 'cs';
for Czech. Make sure your browser supports it and the labels should auto-translate if the locale is handled properly by Chart.js. Let me know if it works!