Try the following example:
ListPlot[Table[j,{j,0.5,10,1}]]
Define the ticks as strings (check the online Help for Ticks in the details section). Use StringReplace (cf. the online Help browser) to change the dot for a comma on each of them:
tks=Table[j,{j,0.5,10,1}];
ListPlot[Table[j,{j,0.5,10,1}],Ticks->{Transpose[{tks,StringReplace[#,"."->","]&/@ToString/@tks}],Automatic}]
-Tomas
> From:
igor.ko...@gmail.com
> Subject: How to substitute decimal dot with decimal comma in Plot ticks?
> To:
math...@smc.vnet.net
> Date: Mon, 20 May 2013 05:05:12 -0400
>
> Is it possible to substitute decimal dots by decimal commas on Plot axes? I need to make that substitution in all routines (Plot, LogPlot, LogLogPlot, e.t.c.) at ones since in my native language decimal comma is used instead of decimal dot as it is in English.
>