I'm trying to create a diagram where some distance/data is skipped, and this is indicated on the axis by a small symbol, either a little zigzag or some diagonal lines, as shown in the below example images.
What's the best way to reproduce this symbol/styling in tikz? (On a side note, is any particular symbol considered standard, or is preferred over others?)
I am currently producing the axis of my diagram using the below code, and would like the symbol to appear at about the (-2,6) point.
\documentclass{article}
\usepackage{tikz}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\draw[black,ultra thick] [-stealth] (-2,0) -- (-2,14);
\node[rotate=90,font=\Large,anchor=south] at (-2,7) {Energy};
\end{tikzpicture}
\end{figure}
\end{document}



pgfplotshas aaxis x discontinuitykey, see the documentation "Axis Discontinuities". – Ulrike Fischer Aug 16 '17 at 08:38pst-plotsolution: https://tex.stackexchange.com/a/83144 – Ross Aug 16 '17 at 10:33