How do I make a Google Chart axis to use day of the week names in different languages (e.g. in German).
For tooltip I use
var formatter = new google.visualization.DateFormat({ pattern: 'EEEE, dd.MM.YYYY' });
Here it produces Tuesday, 31.03.2020
, and I would like to see Dienstag, 31.03.2020
For axis I use option
hAxis: { format: "EE, dd/MM" }
This produces Tu, 31/03
, and I would like to see Di, 31/03
What is the way to do it please?