Problem
I would like to indicate an infeasible region in one of my pgfplots by manually drawing a path in the canvas. This should be a hatched pattern that is decorated on the path, something like north east lines from \usepgflibrary{patterns}.
MWE
\documentclass{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
% axis equal image,
xlabel = {$x$},
ylabel = {$y$},
grid,
xmin = 0, xmax = 3000,
ymin=400, xmax = 2200,
width=0.5\textwidth,
every node near coord/.append style={font=\tiny\scshape},
nodes near coords align={vertical},
]
\addplot+[only marks, nodes near coords, point meta=explicit symbolic]
table[meta=label] {
x y label
2500 1500 a
1306 1655 b
200 1000 c
1600 1570 d
1500 2000 e
};
% path to be decorated
\draw (axis cs:1000, 500) -- (axis cs:2750,500) -- (axis cs:2750, 2000)
-- (axis cs: 1000, 2000) -- cycle;
\end{axis}
\end{tikzpicture}
\end{document}
Challenges
Unfortunately I have no idea how to approach this. Can you help out?
Here are some challenges:
Maybe this can be done by decorating the path, but I don't know how this works.
It is important that the pattern is bounded by the actual path and "bulges outwards". The pattern must not replace the path, but be "on the edge". Bonus: to indicate inverse problems, the pattern could also "bulge inwards".
north east linessometimes looks better thannorth west lines, based on the orientation. Can this choice be automated?
Illustration
By "bulging outwards", I mean the following:

"Inwards" would be the inverse:

I apologize for this sacrilege of a drawing. Because it looks terrible we need Tikz!

