플러스/마이너스 공차를 갖는 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

오류가 발생합니다.

관련 정보