Bonjour,
J'arrive avec PERL actuellement a créer un graphique sous excel avec légende et tout, mais j'arrive pas par contre a modifier l'axe des abscisses.
Voila ce que j'obtiens actuellement :
http://img171.imageshack.us/img171/3041/origintr7.th.jpg
Alors que j'aimerai obtenir ca:
http://img403.imageshack.us/img403/651/finalsh5.th.jpg
L'operation revient a choisir sous Excel manuellement les valeurs min et max dans l'axe des abscisses et a inverser l'ordre.
Je suis sur qu'il s'agit d'une petite option a ajouter, mais j'arrive pas a trouver.
Quelqu'un peut m'aider, en me proposant un truc en PERL ou VB?
Voici par ailleurs une partie du code que j'utilise:
$Chart->{ChartType} = xlXYScatterSmoothNoMarkers;
$Chart->SetSourceData({Source => $Range, PlotBy => xlColumns});
# Add a title to the chart
$Chart->{HasTitle} = 1;
$Chart->ChartTitle->{Text} = "PESQ_MOS for $chart_title";
# Add a legend to the chart
$Chart->{HasLegend} = 1;
$Chart->Legend->{Position} = xlTop;
# Set the location of the chart
$Chart->Location ({Where => xlLocationAsObject, Name => "MOS figure"});
# Save as Excel
$Book->SaveAs({Filename =>$path,
FileFormat => xlWorkbookNormal});
# Close and quit Excel
$Book->Close();
$Excel->Quit();