Answers for "pie plot in latex"

0

pie plot in latex

\usepackage{pgf-pie} % Pie chart library

\begin{document}	% Document starts here

\begin{tikzpicture} 
\pie[
    color = {
        yellow!90!black, 
        green!60!black, 
        blue!60, 
        red!70,
        gray!70,
        teal!20},
    text = legend	% Add a legend
]	% Values:
{22.97/LAL,
    22.97/BC,
    8.11/GSW,
    8.11/CB,
    6.76/SAS,
    31.07/Other}    
\end{tikzpicture}
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language