JpGraph refuse d'élargir la ligne de ma courbe même avec le code suivant :
merci
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10 // Create filled line plot $lplot = new LinePlot($this->total_open_PRs); // add the line plot to the graph $this->graph->Add($lplot); $lplot->SetColor('red@0.7'); $lplot->SetWeight(5); $lplot->SetLegend('Total open PRs'); $lplot->SetBarCenter();
Partager