Re: ChartStyle in BoxWhiskerChart
- To: mathgroup at smc.vnet.net
- Subject: [mg130409] Re: ChartStyle in BoxWhiskerChart
- From: Bob Hanlon <hanlonr357 at gmail.com>
- Date: Wed, 10 Apr 2013 00:48:07 -0400 (EDT)
- Delivered-to: l-mathgroup@mail-archive0.wolfram.com
- Delivered-to: l-mathgroup@wolfram.com
- Delivered-to: mathgroup-newout@smc.vnet.net
- Delivered-to: mathgroup-newsend@smc.vnet.net
- References: <20130409083014.D588C649A@smc.vnet.net>
means = {0, 3, 2, 5};
data = Table[RandomVariate[
NormalDistribution[mu, 1], 100],
{mu, means}];
BoxWhiskerChart[data, {
{"Whiskers", Directive[
Lighter[Red, .75], Thick, Dashed]},
{"MeanMarker", Directive[Thick, Blue]}, {"MedianMarker",
Directive[Thick, Yellow]},
{"Fences", Directive[Thick, Red]}},
BarOrigin -> Left,
ChartStyle -> {Directive[
EdgeForm[{Thick,
RGBColor[179/256, 65/256, 76/256]}],
RGBColor[228/256, 171/256, 123/256]]}]
Bob Hanlon
On Tue, Apr 9, 2013 at 4:04 AM, <abbarber2003 at gmail.com> wrote:
> I need to customize style in BoxWhiskerChart.
> This is my first try
> BoxWhiskerChart[data,
> BarOrigin -> Left,
> ChartStyle -> {
> Directive[
> EdgeForm[{Thickness[0.008], RGBColor[179/256, 65/256, 76/256]}],
> RGBColor[228/256, 171/256, 123/256]]}
> ]
>
> I am able to change only rectangle apparence.
> how can I modify trailing and leading bars (color and thickness)?
> how can I modify modal mark (color and thickness)?
>
> Thanks in advance
>
>
- References:
- ChartStyle in BoxWhiskerChart
- From: abbarber2003@gmail.com
- ChartStyle in BoxWhiskerChart