当我编译此代码时:
\documentclass[11pt,a4paper]{article}
\usepackage{geometry}
\geometry{margin=1in}
\usepackage{tikz}
\usepackage{tkz-euclide}
\usepackage{pgfplots}
\usepgfplotslibrary{statistics}
\begin{document}
\definecolor{bblue}{HTML}{4F81BD}
\begin{center}
\begin{tikzpicture}
\begin{axis}[
title= Website FC Club-Brugge,
width = 0.9*\textwidth,
height = 8cm,
major x tick style = transparent,
%minor y tick style = transparent,
ybar,
bar width=35pt,
ymajorgrids = true,
ymin=0,
ymax=25,
xlabel = {Dag van de week},
ylabel = {Aantal bezoekers},
symbolic x coords={ma,di,woe,don,vrij,zat,zon},
minor ytick={0,1,...,25},
xtick = data,
%enlarge x limits=0.50,
scaled y ticks = false,
]
\addplot[style={bblue,fill=bblue,mark=none}]
coordinates {(ma,35) (di,13) (woe,16) (don,13) (vrij,23) (zat,18) (zon,19)};
% \legend{Karel,Fien,Peter,Wim}
\end{axis}
\end{tikzpicture}
\end{center}
\end{document}
对于 x 轴的标签,输出不正确(不在同一高度),并且未显示“ma”的数据。我找不到我做错的地方。
更新,将数据 (ma,35) 更改为 (ma,24) 可使 ma 显示正常。但仍然不在一行中。
答案1
ma
缺少该条,因为其值 ( )35
超出了轴的可见范围 (0
至25
)。设置ymax=35
可修复此问题。
要更正标签的对齐方式,请设置xticklabel style={text height=1.5ex}
。