mirror of
https://github.com/MartinThoma/LaTeX-examples.git
synced 2025-04-28 23:37:57 +02:00
added bar chart examples
This commit is contained in:
parent
c96f849d1b
commit
966706e252
6 changed files with 160 additions and 0 deletions
19
tikz/bar-chart-simple/bar-chart-simple.tex
Normal file
19
tikz/bar-chart-simple/bar-chart-simple.tex
Normal file
|
@ -0,0 +1,19 @@
|
|||
% Source: http://tex.stackexchange.com/a/8584/5645
|
||||
\documentclass[varwidth=true, border=2pt]{standalone}
|
||||
|
||||
\usepackage{pgfplots}
|
||||
|
||||
\begin{document}
|
||||
\begin{tikzpicture}
|
||||
\begin{axis}[
|
||||
symbolic x coords={a small bar, a medium bar, a large bar},
|
||||
xtick=data
|
||||
]
|
||||
\addplot[ybar,fill=blue] coordinates {
|
||||
(a small bar, 42)
|
||||
(a medium bar, 50)
|
||||
(a large bar, 80)
|
||||
};
|
||||
\end{axis}
|
||||
\end{tikzpicture}
|
||||
\end{document}
|
Loading…
Add table
Add a link
Reference in a new issue