Bonjour,

Mon problème c'est que j'arrive pas à afficher tout mes
Code : Sélectionner tout - Visualiser dans une fenêtre à part
$graph->xaxis->SetTickLabels($data)
sur mon graphe je n'ai que la dernière valeur et le reste est écraser et je ne comprend pas pourquoi??

voici mon code:

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/ Create the bar plots
			$b1plot = new BarPlot($click);
			$graph->xaxis->SetTickLabels($data);
			$b2plot = new BarPlot($click1);
			$graph->xaxis->SetTickLabels($data);
			$b3plot = new BarPlot($click2);
			$graph->xaxis->SetTickLabels($data);
 
			// Create the grouped bar plot
			$gbplot = new groupBarPlot(array($b1plot,$b2plot,$b3plot));
 
 
			// ...and add it to the graPH
			$graph->Add($gbplot);