我如何定义图表的大小?我有一个不同的尺寸

我如何定义图表的大小?我有一个不同的尺寸

我有两个主要问题:

第一个问题:为什么我打印图表时其尺寸小于:宽度=10cm,高度=15cm。

这是我的代码:

\documentclass{article}
\usepackage{tikz,pgfplots}

\begin{document}
%\pgfplotsset{width=15cm,height=10cm}
\begin{tikzpicture}
\begin{axis}[colorbar, grid=both, scale only axis=true,
  width=10cm, height=15cm]
\addplot[
scatter,mark=text, text mark={\rule{14mm}{5mm}},only marks,
point meta=\thisrow{myvalue}
]
table {
x y color myvalue
2 3 1 100
4 3 2 3
2 7 3 0.75
7 7 4 45
8 5 2   3
};
\end{axis}
\end{tikzpicture}

\end{document}

第二个问题:我想要 x 轴和 y 轴的范围从零到十,步长为 2。如何工作?

相关内容