I have a discrete 3D plot from which I want to remove the axes labels and values. To demonstrate what I need, lets consider an example from the Mathematica Documentation:
DiscretePlot3D[{PDF[MultivariatePoissonDistribution[3, {1, 1}], {t, u}], PDF[MultivariatePoissonDistribution[5, {2, 2}], {t, u}]}, {t, 0, 10}, {u, 0, 10}, ExtentSize -> Full],
i.e. see this link. This generates the following graph:
I would like to completely remove the values from the image. The reason for this is since I would like to generate the numbers in Tikz for a LaTeX typeset. I am aware of the MateX library that exists for
Mathematica. I have tried to use ImagePadding->1 but this has no effect.


LabelStyle -> Transparent, that is. – J. M.'s missing motivation Feb 22 '16 at 11:37