Re: line thickness 2D plot legend
- To: mathgroup at smc.vnet.net
- Subject: [mg68048] Re: [mg67974] line thickness 2D plot legend
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Fri, 21 Jul 2006 05:37:41 -0400 (EDT)
- Reply-to: hanlonr at cox.net
- Sender: owner-wri-mathgroup at wolfram.com
Use AbsoluteThickness
Needs["Graphics`"];
m=3;
Plot[Evaluate[
Table[x^n,{n,0,m}]],{x,0,1.2},
PlotStyle->Table[
{AbsoluteThickness[n+1],
Hue[(n+m)/(2m)]},{n,0,m}],
PlotLegend->Table[n,{n,0,m}],
ImageSize->480];
Bob Hanlon
---- julia.strassburg at gmx.de wrote:
> For a 2D Plot in Mathematica: How can I modify the line thickness in
> the legend of a 2D Plot. The lines in the plot can be made thickner
> through PlotStyle->{Thickness[0.08]}, but this does not influence the
> legend. How can I change the line thickness there?
>