Re: How change frame width in Framed object?
- To: mathgroup at smc.vnet.net
- Subject: [mg77929] Re: [mg77855] How change frame width in Framed object?
- From: Pratik Desai <pratikd at wolfram.com>
- Date: Wed, 20 Jun 2007 05:25:29 -0400 (EDT)
- References: <200706181102.HAA19648@smc.vnet.net>
Murray Eisenberg wrote:
> In Mathematica 6.0, how can I change the frame width in a Framed[expr]
> object?
>
> I can change the color, e.g., by including the option FrameStyle->Red.
> But something like
>
> FrameStyle->{Red,Thick}
>
> or
>
> FrameStyle->{Red,Thickness[0.8]}
>
> seems to have no effect.
>
Hello Murray,
Using Directive inside FrameStyle I was able to get the required Frame.
Here is an example:
Plot[Sin[x], {x, 0, 10}, Frame -> True, FrameStyle ->
Directive[Thickness[0.02], Red]]
Hope this helps
Pratik Desai
- References:
- How change frame width in Framed object?
- From: Murray Eisenberg <murray@math.umass.edu>
- How change frame width in Framed object?