From: Jim Lambaugh on
Hi

Please look at this:

Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True]

The bottom of each column does not meet with the x-axis, but there is
a little space between them. Is there any way to remove this?

Best regards.
Jimmy.

From: Bob Hanlon on

Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3},
Frame -> True,
PlotRange -> {0, Automatic}]


Bob Hanlon

---- Jim Lambaugh <lambaugh(a)gmail.com> wrote:

=============
Hi

Please look at this:

Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True]

The bottom of each column does not meet with the x-axis, but there is
a little space between them. Is there any way to remove this?

Best regards.
Jimmy.



From: Patrick Scheibe on
Hi,

in this special case? Yes

Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3},
Frame -> True] /.
(PlotRangePadding -> {xdim_, {_, ym_}}) :>
PlotRangePadding -> {xdim, {0, ym}}

To investigate in such non-complex plots you could have
looked at the InputForm of the graphics to see what's happening.

Cheers
Patrick


Am Apr 20, 2010 um 11:49 AM schrieb Jim Lambaugh:

> Hi
>
> Please look at this:
>
> Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True]
>
> The bottom of each column does not meet with the x-axis, but there is
> a little space between them. Is there any way to remove this?
>
> Best regards.
> Jimmy.
>


From: David Park on
Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3},
Frame -> True,
PlotRange -> {{0, 4.2}, {0, 4}}]


David Park
djmpark(a)comcast.net
http://home.comcast.net/~djmpark/


From: Jim Lambaugh [mailto:lambaugh(a)gmail.com]


Hi

Please look at this:

Histogram[{1, 2, 3, 1, 2, 3, 1, 2, 3}, Frame -> True]

The bottom of each column does not meet with the x-axis, but there is
a little space between them. Is there any way to remove this?

Best regards.
Jimmy.