이런 면적 차트를 그리고 싶습니다.
영역을 색상으로 채우는 방법을 모르겠습니다. 여기에 제가 가지고 있는 것이 있습니다.
\documentclass{standalone}
\usepackage{pgfplots}
\usepackage{xcolor}
\pgfplotsset{compat=1.8}
\makeatletter
\let\percent\@percentchar
\makeatother
\begin{document}
\begin{center}
\begin{tikzpicture}
\begin{axis}[
%title = {Distinctive SIFT features vs. Image resolution},
xlabel= X LABEL HERE,
ylabel= {Y LABEL HERE},
enlarge x limits=0.1,
legend style={
at={(0.5,-0.15)},
anchor=north,legend columns=-1
},
width=12.8cm,
height=8cm,
point meta={x*100},
symbolic x coords={100\percent, 90\percent, 79\percent, 69\percent, 60\percent, 50\percent, 39\percent, 30\percent, 20\percent},
%grid=major
]
% Median
\addplot coordinates {
(100\percent, 7218) (90\percent, 6075) (79\percent, 4021) (69\percent, 2906) (60\percent, 1861) (50\percent, 768) (39\percent, 451) (30\percent, 317) (20\percent, 164)};
\end{axis}
\end{tikzpicture}
\end{center}
\end{document}
답변1
\closedcycle
채우기 색상을 사용 하고 지정합니다. 위에서 아래로 그라데이션을 적용하려면 top color=
및 를 지정할 수 있습니다 bottom color=
. 왼쪽에서 오른쪽으로 진행되는 그라데이션의 경우 다음을 지정 left color=
합니다 right color
.
노트:
- 또한 기존 옵션에 옵션이 추가되도록 변경
\addplot
했습니다 .\addplot+
fill
암호:
\documentclass{standalone}
\usepackage{pgfplots}
\usepackage{xcolor}
\pgfplotsset{compat=1.8}
\makeatletter
\let\percent\@percentchar
\makeatother
\begin{document}
\begin{tikzpicture}
\begin{axis}[
%title = {Distinctive SIFT features vs. Image resolution},
xlabel= X LABEL HERE,
ylabel= {Y LABEL HERE},
enlarge x limits=0.1,
legend style={
at={(0.5,-0.15)},
anchor=north,legend columns=-1
},
width=12.8cm,
height=8cm,
point meta={x*100},
symbolic x coords={100\percent, 90\percent, 79\percent, 69\percent, 60\percent, 50\percent, 39\percent, 30\percent, 20\percent},
%grid=major
]
% Median
\addplot+ [left color=green, right color=red] coordinates {
(100\percent, 7218) (90\percent, 6075) (79\percent, 4021) (69\percent, 2906) (60\percent, 1861) (50\percent, 768) (39\percent, 451) (30\percent, 317) (20\percent, 164)} \closedcycle;
\end{axis}
\end{tikzpicture}
\end{document}