I am trying to draw a function as well as a shaded grid on the same axes. Although I use a step size of 1cm in the grid between -3 and 0, the xticks, as well as the shaded region look misplaced. how can I solve this? thanks
\begin{tikzpicture}
\begin{axis}[axis lines=right,
axis x line=middle,
xlabel={$t$},
ylabel={$x$},
%position spatial axes label on top of the axis
every axis y label/.style={
at={(ticklabel* cs:1.05)},
anchor=south,
}, xtick={-7, -6, -5, -4, -3, -2 ,-1},
% xticklabels={$-7$, $-6$, $-5$, $-4$, $-3$, $-2$ ,$-1$},
% ytick={0.2,0.4,0.6,0.8,1},
domain=-7:0,
xmin=-7, xmax=0,
ymin=0, ymax=1.1,
samples=500,
]
\addplot+[mark=none,color=black] {e^(x/2.75)};
\draw[step=1cm,color=gray!50,opacity=0.5] (-3,0) grid (0,1);
\filldraw [fill=gray, draw=black,opacity=0.5]
-- (-3,0)
-- (-3,0.2)
-- (-2,0.2)
-- (-2,0.4)
-- (-1,0.4)
-- (-1,0.6)
-- (0,0.6)
-- (0,0)
-- cycle;
\end{axis}
\end{tikzpicture}

