Simple Javascript code to translate the Highchart Tools in french language.
Put this code before calling for a new Highchart graphic
Highcharts French Translation Javascript Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
Highcharts.setOptions({ lang: { months: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'], weekdays: ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'], shortMonths: ['Jan', 'Fev', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Aout', 'Sept', 'Oct', 'Nov', 'Déc'], decimalPoint: ',', downloadPNG: 'Télécharger en image PNG', downloadJPEG: 'Télécharger en image JPEG', downloadPDF: 'Télécharger en document PDF', downloadSVG: 'Télécharger en document Vectoriel', exportButtonTitle: 'Export du graphique', loading: 'Chargement en cours...', printButtonTitle: 'Imprimer le graphique', resetZoom: 'Réinitialiser le zoom', resetZoomTitle: 'Réinitialiser le zoom au niveau 1:1', thousandsSep: ' ', decimalPoint: ',' } }); |
Hope this help.
yes it is!
thanks
Grand merci!!!!!!!!
Merci !
thanks
Super, merci bcp !
J’ai apporté qq corrections (surement leur code qui a changé depuis ce post) et ajouts (û pour août, majuscule aux mois, printchart, noData). Là il ne manque que drillUpText et numericSymbols :
Highcharts.setOptions({
lang: {
months: [‘Janvier’, ‘Février’, ‘Mars’, ‘Avril’, ‘Mai’, ‘Juin’, ‘Juillet’, ‘Août’, ‘Septembre’, ‘Octobre’, ‘Novembre’, ‘Décembre’],
weekdays: [‘Dimanche’, ‘Lundi’, ‘Mardi’, ‘Mercredi’, ‘Jeudi’, ‘Vendredi’, ‘Samedi’],
shortMonths: [‘Jan’, ‘Fev’, ‘Mar’, ‘Avr’, ‘Mai’, ‘Juin’, ‘Juil’, ‘Août’, ‘Sept’, ‘Oct’, ‘Nov’, ‘Déc’],
decimalPoint: ‘,’,
printChart: ‘Imprimer’,
downloadPNG: ‘Télécharger en image PNG’,
downloadJPEG: ‘Télécharger en image JPEG’,
downloadPDF: ‘Télécharger en document PDF’,
downloadSVG: ‘Télécharger en document Vectoriel’,
loading: ‘Chargement en cours…’,
contextButtonTitle: ‘Exporter le graphique’,
resetZoom: ‘Réinitialiser le zoom’,
resetZoomTitle: ‘Réinitialiser le zoom au niveau 1:1’,
thousandsSep: ‘ ‘,
decimalPoint: ‘,’,
noData: ‘Pas d’information à afficher’
}
});