<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 TRANSITIONAL//EN">
<HTML>
<HEAD>
  <META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=UTF-8">
  <META NAME="GENERATOR" CONTENT="GtkHTML/3.26.0">
</HEAD>
<BODY>
Thanks for the quick answer. However it is not want I need. Maybe I was not clear enough.<BR>
<BR>
<BLOCKQUOTE TYPE=CITE>
<PRE>
\begin{psgraph}[Dy=1.000,Oy=-11.444,Ox=4]{-&gt;}(4,0)(4,-2)(14,4){9cm}{5cm}
</PRE>
</BLOCKQUOTE>
<BR>
This will make the labels to be equal to -11.444, -10.444, -9.444 etc. Want I'd like to have is the same scaling on the points I'm plotting on the labels of the psgraph env.<BR>
<BR>
The labels should evolves this way: -11.444, -11.434, -11.424 etc. At each step an increment of .01 should be added. This way the labels would be coherent with the scaling performed on the data by the command \pstScalePoints(1,100){}{11.444 add}.<BR>
<BR>
I will provide three examples in the hope everything is more clear:<BR>
 1. original example<BR>
 2. example where the label values where &quot;hardcoded&quot; using \psyTick(){} =&gt; target behaviour<BR>
 3. example 1 with technique of example 2; because of Ox=4, this does not work, \psyTick places the tics and the labels at x=0<BR>
<BR>
What I am looking for is a automation of the process used in the second example that works even if Ox /= 0.<BR>
Attached is the PDF of the output.<BR>
<BR>
Thanks in advance,<BR>
Antoine Pairet<BR>
<BR>
\begin{filecontents}{data.dat}<BR>
&nbsp;&nbsp; 13.23251400000000&nbsp; -11.44268228200000&nbsp;&nbsp;&nbsp; 4.59849657000000&nbsp;&nbsp;&nbsp; 1.40493544877201<BR>
&nbsp;&nbsp; 11.57844475000000&nbsp; -11.44269146500000&nbsp;&nbsp;&nbsp; 4.59849918080000&nbsp;&nbsp;&nbsp; 1.40493624640736<BR>
&nbsp;&nbsp;&nbsp; 9.92438550000000&nbsp; -11.44276508800000&nbsp;&nbsp;&nbsp; 4.59866092640000&nbsp;&nbsp;&nbsp; 1.40498566307214<BR>
&nbsp;&nbsp;&nbsp; 8.27032125000000&nbsp; -11.44327883750000&nbsp;&nbsp;&nbsp; 4.59929667740000&nbsp;&nbsp;&nbsp; 1.40517989807378<BR>
&nbsp;&nbsp;&nbsp; 6.61628200000000&nbsp; -11.44431177300000&nbsp;&nbsp;&nbsp; 4.59929726250000&nbsp;&nbsp;&nbsp; 1.40518007679451<BR>
&nbsp;&nbsp;&nbsp; 4.96219275000000&nbsp; -11.43676810200000&nbsp;&nbsp;&nbsp; 4.59398967360000&nbsp;&nbsp;&nbsp; 1.40355849908927<BR>
\end{filecontents}<BR>
\begin{filecontents}{ecutConv.dat}<BR>
&nbsp; 15&nbsp; -11.376356813&nbsp;&nbsp; 0&nbsp;&nbsp; 4.5902838585&nbsp;&nbsp; 0<BR>
&nbsp; 20&nbsp; -11.428570691&nbsp;&nbsp;&nbsp; 1.91882&nbsp;&nbsp; 4.6103186999&nbsp;&nbsp;&nbsp; 0.43551<BR>
&nbsp; 25&nbsp; -11.441164384&nbsp;&nbsp;&nbsp;&nbsp; 0.4628&nbsp;&nbsp; 4.5999206137&nbsp;&nbsp;&nbsp; 0.22579<BR>
&nbsp; 30&nbsp; -11.442810833&nbsp;&nbsp;&nbsp;&nbsp; 0.0605&nbsp;&nbsp; 4.5987293498&nbsp;&nbsp;&nbsp;&nbsp; 0.0259<BR>
&nbsp; 35&nbsp; -11.443131625&nbsp;&nbsp;&nbsp; 0.01178&nbsp;&nbsp;&nbsp; 4.598484173&nbsp;&nbsp;&nbsp; 0.00533<BR>
&nbsp; 40&nbsp; -11.443384818&nbsp;&nbsp;&nbsp;&nbsp; 0.0093&nbsp;&nbsp; 4.5984883638&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9e-05<BR>
&nbsp; 45&nbsp; -11.443594054&nbsp;&nbsp;&nbsp; 0.00768&nbsp;&nbsp; 4.5982745531&nbsp;&nbsp;&nbsp; 0.00464<BR>
&nbsp; 50&nbsp; -11.443709076&nbsp;&nbsp;&nbsp; 0.00422&nbsp;&nbsp; 4.5981886466&nbsp;&nbsp;&nbsp; 0.00186<BR>
&nbsp; 55&nbsp; -11.443761573&nbsp;&nbsp;&nbsp; 0.00192&nbsp;&nbsp; 4.5981566868&nbsp;&nbsp;&nbsp; 0.00069<BR>
&nbsp; 60&nbsp; -11.443782124&nbsp;&nbsp;&nbsp; 0.00075&nbsp;&nbsp; 4.5981607152&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8e-05<BR>
&nbsp; 65&nbsp;&nbsp; -11.44378715&nbsp;&nbsp;&nbsp; 0.00018&nbsp;&nbsp;&nbsp; 4.598157398&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7e-05<BR>
&nbsp; 70&nbsp; -11.443787675&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1e-05&nbsp;&nbsp; 4.5981572697&nbsp;&nbsp; 0<BR>
\end{filecontents}<BR>
\documentclass{article}<BR>
\usepackage{pstricks-add}<BR>
<BR>
\begin{document}<BR>
\readdata{\heightEne}{data.dat}<BR>
\readdata{\ecutConv}{ecutConv.dat}<BR>
<BR>
\section{first example}<BR>
\psset{plotstyle=dots,lly=-.25,llx=-2.5,urx=3,ury=2}<BR>
\begin{psgraph}[Dy=1.000,Oy=-11.444,Ox=4]{-&gt;}(4,0)(4,-2)(14,4){9cm}{5cm}<BR>
        \pstScalePoints(1,100){}{11.444 add}<BR>
        \psset{plotNo=1,plotNoMax=3}<BR>
        \listplot[linecolor=red]{\heightEne}<BR>
\end{psgraph}<BR>
\pstScalePoints(1,1){}{}<BR>
<BR>
\section{second example}<BR>
\begin{psgraph}[Dx=10,Dy=10]{-&gt;}(0,0)(0,-1)(90,8){9cm}{5cm}<BR>
        \psyTick(0){-11.444}<BR>
        \psyTick(2){-11.424}<BR>
        \psyTick(4){-11.404}<BR>
        \psyTick(6){-11.384}<BR>
        \pstScalePoints(1,100){}{11.444 add}<BR>
        \listplot[linecolor=red,plotNo=1,plotNoMax=4]{\ecutConv}<BR>
\end{psgraph}<BR>
<BR>
\section{third example}<BR>
\psset{plotstyle=dots,lly=-.25,llx=-2.5,urx=3,ury=2}<BR>
\begin{psgraph}[Dy=10,Oy=-11.444,Ox=4]{-&gt;}(4,0)(4,-2)(14,4){9cm}{5cm}<BR>
        \psyTick(0){-11.444}<BR>
        \psyTick(2){-11.424}<BR>
        \psyTick(4){-11.404}<BR>
        \psyTick(6){-11.384}<BR>
        \pstScalePoints(1,100){}{11.444 add}<BR>
        \psset{plotNo=1,plotNoMax=3}<BR>
        \listplot[linecolor=red]{\heightEne}<BR>
\end{psgraph}<BR>
\pstScalePoints(1,1){}{}<BR>
\end{document}
</BODY>
</HTML>