is a graphics directive that specifies that lines which follow should be drawn thin.
Thin
is a graphics directive that specifies that lines which follow should be drawn thin.
Examples
open all close allBasic Examples (2)
{Graphics[{Thin, Line[{{0, 0}, {2, 1}}]}], Graphics[{Thick, Line[{{0, 0}, {2, 1}}]}]}{Graphics3D[{Thin, Line[{{0, 0, 0}, {2, 1, 1}}]}], Graphics3D[{Thick, Line[{{0, 0, 0}, {2, 1, 1}}]}]}{Grid[Table[x, {4}, {4}], Frame -> All, FrameStyle -> Thin], Grid[Table[x, {4}, {4}], Frame -> All, FrameStyle -> Thick]}Scope (2)
Use EdgeForm to draw thin and thick edges:
{Graphics[{Pink, EdgeForm[Thin], Rectangle[]}],
Graphics[{Pink, EdgeForm[Thick], Rectangle[]}]}{Graphics3D[{EdgeForm[Thin], Cuboid[]}, Boxed -> False],
Graphics3D[{EdgeForm[Thick], Cuboid[]}, Boxed -> False]}Plots with thin and thick lines:
{Plot[Sin[x], {x, 0, 2Pi}, PlotStyle -> Thin], Plot[Sin[x], {x, 0, 2Pi}, PlotStyle -> Thick]}Properties & Relations (4)
Thin is equivalent to Thickness[Tiny]:
ThinSpecify the thickness of lines as a fraction of the total width of the graphic, using Thickness:
Table[Graphics[{Thickness[r], Line[{{1, 0}, {2, 1}, {3, 0}, {4, 1}}]}], {r, {0.01, 0.02, 0.05}}]Specify the thickness of lines in printer's points using AbsoluteThickness:
Table[Graphics[{AbsoluteThickness[d], Line[{{1, 0}, {2, 1}, {3, 0}, {4, 1}}]}], {d, {0.5, 2, 5}}]Thin is absolute thickness, independent of the image size:
Table[Graphics[{Thin, Line[{{0, 0}, {2, 1}}]}, ImageSize -> s], {s, {50, 100, 150}}]See Also
Related Guides
History
Text
Wolfram Research (2007), Thin, Wolfram Language function, https://reference.wolfram.com/language/ref/Thin.html.
CMS
Wolfram Language. 2007. "Thin." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Thin.html.
APA
Wolfram Language. (2007). Thin. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Thin.html
BibTeX
@misc{reference.wolfram_2026_thin, author="Wolfram Research", title="{Thin}", year="2007", howpublished="\url{https://reference.wolfram.com/language/ref/Thin.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_thin, organization={Wolfram Research}, title={Thin}, year={2007}, url={https://reference.wolfram.com/language/ref/Thin.html}, note=[Accessed: 13-June-2026]}