4

I have many ListPlot and ListLinePlot in my notebook.

I each command I have added PlotStyle -> Thick, AxesStyle -> Thick, FrameStyle -> Thick.

How can I set these styles globally for all plots?

lio
  • 2,396
  • 13
  • 26

2 Answers2

6

You could set it as :

plotset = {PlotStyle -> Thick, AxesStyle -> Thick, 
   FrameStyle -> Thick};

Plot[Sin[x], {x, -6, 6}, Evaluate@plotset]

ListPlot[{1, 2, 3, 4, 5}, Evaluate@plotset]
Lotus
  • 2,671
  • 11
  • 10
4

Also possible SetOptions[{Plot, ListPlot}, {PlotStyle -> Thick, AxesStyle -> Thick, FrameStyle -> Thick}]

yohbs
  • 7,046
  • 3
  • 29
  • 60