On peut donner un dégradé dans la partie du haut seulement en indiquant une texture qui a un dégradé (et non pas simplement en indiquant deux couleurs).
Il faut mettre :
<graphbackground texture="tex_greengrad.png" stretch="1"/>
Là tu auras la texture verte dégradée qui sera incrustée derrière le graph. Ca aurait pu aussi être une photo
Par contre pour les lignes horizontales qui n'apparaissent pas ca doit etre un bug que je corrige de ce pas.
Un moyen de contourner ce bug c'est d'ajouter un peu de transparence sur cloud_base (on les verras en dessous).
Au final ca donne ca, j'ai ajouté un ligne cloud_base pour bien délimité le blanc et le blanc du gradient vert.
Tu peux te faire tes propres gradient en .png ou .jpg, ou mettre une photo d'un paysage
<?xml version="1.0" encoding="iso-8859-1"?>
<stylesheet>
<image width="585" height="205"/>
<!-- ================= First Lineplot ================= -->
<lineplot width="580" height="200" shadow="5" position-x="0" position-y="0" margin-top="15" margin-right="35" margin-bottom="45" margin-left="65">
<border cornerradius="40" color="FF909090" thick="1"/>
<xaxis color="FF000000" grid="1" autoscale="0" min="0" max="0" titleside="32">
<title text="" alignement="20" angle="0">
<font color="FF000000" facename="Arial" size="14" weight="400" italic="0"/>
</title>
<labels labelinterval="1" angle="0" formatstring="0" side="2" hide="0">
<font color="FF000000" facename="Arial" size="14" weight="400" italic="0"/>
</labels>
<ticks majorticks="10" minorticks="4" side="2" hidefirst="0" hidelast="0" hideminorticks="0" hide="0"/>
</xaxis>
<y1axis color="FF000000" grid="1" autoscale="1" min="0" max="0" titleside="2" titlemargin="40">
<title text="Hauteur estimée des nuages" alignement="20" angle="0">
<font color="FF000000" facename="Arial" size="14" weight="400" italic="0"/>
</title>
<labels labelinterval="1" angle="0" formatstring="0" side="2" hide="0">
<font color="FF000000" facename="Arial" size="14" weight="400" italic="0"/>
</labels>
<ticks majorticks="5" minorticks="4" side="2" hidefirst="0" hidelast="0" hideminorticks="0" hide="0"/>
</y1axis>
<data>
<cloud_base axisbind="y1axis" color1="30000000" antialiasing="1" filled="0" hide="0" thick="1.2" hidelegend="1"/>
<cloud_base axisbind="y1axis" color1="80FFFFFF" color2="80FFFFFF" antialiasing="1" filled="1" hide="0" thick="0" hidelegend="1"/>
</data>
<background color="FFFFFFFF" texture="tex_bluegrad.png" stretch="1"/>
<graphbackground texture="tex_greengrad.png" stretch="1"/>
</lineplot>
</stylesheet>