is a graphics directive that specifies that lines which follow should be drawn thick.
Thick
is a graphics directive that specifies that lines which follow should be drawn thick.
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)
Thick is equivalent to Thickness[Large]:
ThickSpecify 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}}]Thick is absolute thickness, independent of the image size:
Table[Graphics[{Thick, Line[{{0, 0}, {2, 1}}]}, ImageSize -> s], {s, {50, 100, 150}}]See Also
Related Guides
History
Text
Wolfram Research (2007), Thick, Wolfram Language function, https://reference.wolfram.com/language/ref/Thick.html.
CMS
Wolfram Language. 2007. "Thick." Wolfram Language & System Documentation Center. Wolfram Research. https://reference.wolfram.com/language/ref/Thick.html.
APA
Wolfram Language. (2007). Thick. Wolfram Language & System Documentation Center. Retrieved from https://reference.wolfram.com/language/ref/Thick.html
BibTeX
@misc{reference.wolfram_2026_thick, author="Wolfram Research", title="{Thick}", year="2007", howpublished="\url{https://reference.wolfram.com/language/ref/Thick.html}", note=[Accessed: 13-June-2026]}
BibLaTeX
@online{reference.wolfram_2026_thick, organization={Wolfram Research}, title={Thick}, year={2007}, url={https://reference.wolfram.com/language/ref/Thick.html}, note=[Accessed: 13-June-2026]}