プラスマイナス許容差付きTikZグラフの高さ

プラスマイナス許容差付きTikZグラフの高さ

私は執筆中の論文に TikZ グラフを載せ、グラフの高さをプラス/マイナスの許容範囲にしようとしています。MWE を以下に示します。

\begin{minipage}{\columnwidth}
    \begin{center}
        \begin{tikzpicture}
            \begin{axis}[legend pos=north east,
                xlabel=Number of Elements,
                ylabel=Bending Stress,
                height=0.25\textheight, % add plus/minus tolerance here
                width=\columnwidth
                ]
                \addplot[very thick] coordinates {
                    (2,4.3)
                    (4,2.78)
                    (6,1.96)
                    (10,1.24)
                    (20,0.93)
                    (30,1.04)
                    (56,1.15)
                    (80,1.22)
                    (140,1.54)  
                };

                \legend {Line 1}
            \end{axis}
        \end{tikzpicture}
        \captionof{figure}{BENDING STRESS VS. OFFSET LENGTH}
    \end{center}
\end{minipage}

セクション ヘッダーの位置に応じて、TikZ グラフの高さを変えて、ページにぴったり収まるようにしたいと思います。

TikZ環境で動作するものは見つかりませんでした。例えば、

height=0.25\textheight plus 0.03\textheight

エラーが発生します。

関連情報