Latex의 막대 차트

Latex의 막대 차트

다음 막대 차트의 코드를 작성하려고 합니다. 여기에 이미지 설명을 입력하세요 지금까지 할 수 있는 일은 다음과 같습니다. 여기에 이미지 설명을 입력하세요 보시다시피 원본 차트와 유사한 범례를 생성하지 못했습니다. 원본 차트의 범례는 각 차트 바로 옆에 있습니다. 누구든지 도움을 주시면 정말 감사하겠습니다. 미리 감사드립니다.

\begin{tikzpicture}
    \begin{axis}[
    xbar, 
    bar width=0.2cm,
    %enlarge x limits=0.25,
    width=0.5\textwidth,
    tick align=inside,
    major grid style={draw=black},
    %enlarge y limits={value=.1,upper},
    xmin=0, xmax=100,
    %axis x line*=bottom,
    %axis y line*=right,
    %hide y axis,axis line style={shorten >=-15pt, shorten <=-15pt},
    symbolic y coords={1990-1997, 1998-1999, 2000-2008},
    %ytick=data,
                legend style={
            at={(0.5,-0.01)},
            anchor=north,
            legend columns=-1,
            /tikz/every even column/.append style={column sep=0.5cm}
        },
    %nodes near coords={\pgfmathprintnumber[precision=0]{\pgfplotspointmeta} }
]
    \addplot [draw=none, fill=blue!30] coordinates {
        (75.4064,1990-1997)
        (72.7961,1998-1999) 
        (94.4597,2000-2008) };
    \addplot [draw=none,fill=red!30] coordinates {
        (5.4064,1990-1997)
        (89.7961,1998-1999) 
        (94.4597,2000-2008) };
       \node [left] at (0,5) {D}; 
    \legend{blue, red}
    \end{axis}
\end{tikzpicture}

관련 정보