| Author |
Comment/Response |
yehuda
|
01/31/13 03:21am
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
URL: , |
|