| Original Message (ID '298410') By yehuda: |
| It is always a good idea to look at the options of function in the documentation
here you may to use
ChartBaseStyle
see the following code
l = RandomReal[10, {200000}];
(*without *)
Histogram[l]
(*with*)
Histogram[l, ChartBaseStyle -> EdgeForm[Thick]]
(*Controlling number of beans
without *)
Histogram[l, 10]
(*with*)
Histogram[l, 10, ChartBaseStyle -> EdgeForm[Thick]]
yehuda |
|