Hello all,
I see that you can set evepotranspiration in "Temperature 2" but it refers to it as "inches" I did change the (in) to (mm) but the number on the graph still shows 3 digits after the "." like 2.000. How can I fix it?
Thank you
Peter
Evapotranspiration.........
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Evapotranspiration.........
Hi,
What is the .xml you use?
What is the .xml you use?
Re: Evapotranspiration.........
Hi,
I use a custom .xml file and I have the following code
<title text="Evapotranspiration ($UNIT[RAINFALL])" alignement="20" angle="0">
and in data
<temperature_2 axisbind="y3axis" legend="Evapotranspiration" color1="FF000000" color2="FF000000" antialiasing="1" filled="0" hide="0" />
it shows ok in the graph, it's just the number that has the extra digit.
Thank you
Peter
I use a custom .xml file and I have the following code
<title text="Evapotranspiration ($UNIT[RAINFALL])" alignement="20" angle="0">
and in data
<temperature_2 axisbind="y3axis" legend="Evapotranspiration" color1="FF000000" color2="FF000000" antialiasing="1" filled="0" hide="0" />
it shows ok in the graph, it's just the number that has the extra digit.
Thank you
Peter
- TiToine
- Site Admin
- Messages : 3356
- Inscription : lun. mars 20, 2006 11:16 am
- Localisation : Montréal
- Contact :
Re: Evapotranspiration.........
In your .xml you should have something like that :
Change format=".1" in format=".3"
Code : Tout sélectionner
<y3axis side="right" color="FF000000" grid="0" autoscale="0" min="0" max="100" titleside="right" ydelta="65" titlemargin="40">
<title text="Humidité (%)" alignement="vcenter|hcenter" angle="0">
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</title>
<labels labelinterval="1" angle="0" format=".1" side="right" hide="0">
<font color="FF000000" facename="Arial" size="12" weight="400" italic="1" />
</labels>
<ticks majorticks="5" minorticks="4" side="right" hidefirst="0" hidelast="0" hideminorticks="0" hide="0" />
</y3axis>
Re: Evapotranspiration.........
Antoine, yes it was the "format" part that was wrong, so I learned one more thing. All is well now thank you very much.
Peter
Peter