modify apexchart burger menu
hi everyone, i wish to know how to customize the right menu titles of a bar apexchart? thanks
Solution:Jump to solution
'chart' => [
'type' => 'bar',
'height' => 287,
'background' => '#ffffff',
'stacked' => true,...
2 Replies
the solution :
Solution
'chart' => [
'type' => 'bar',
'height' => 287,
'background' => '#ffffff',
'stacked' => true,
'locales' => [
[
'name' => 'fr',
'options' => [
'months' => ['Janvier', 'Février', 'Mars', 'Avril', 'Mai', 'Juin', 'Juillet', 'Août', 'Septembre', 'Octobre', 'Novembre', 'Décembre'],
'shortMonths' => ['Jan', 'Fév', 'Mar', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sep', 'Oct', 'Nov', 'Déc'],
'days' => ['Dimanche', 'Lundi', 'Mardi', 'Mercredi', 'Jeudi', 'Vendredi', 'Samedi'],
'shortDays' => ['Dim', 'Lun', 'Mar', 'Mer', 'Jeu', 'Ven', 'Sam'],
'toolbar' => [
"exportToSVG" => "Téléchar. WEB",
"exportToPNG" => "Téléch. IMAGE",
"exportToCSV" => "Téléch. EXCEL",
'selection' => 'Sélection',
'selectionZoom' => 'Zoom Sélection',
'zoomIn' => 'Agrandir',
'zoomOut' => 'Réduire',
'pan' => 'Panoramique',
'reset' => 'Réinitialiser Zoom',
],
],
],
],
'defaultLocale' => 'fr',