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?
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?
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]
Also possible SetOptions[{Plot, ListPlot}, {PlotStyle -> Thick, AxesStyle -> Thick, FrameStyle -> Thick}]
SetOptions[{Plot,ListPlot}, {PlotStyle -> Thick, AxesStyle -> Thick, FrameStyle -> Thick}]
– lio
Apr 21 '17 at 22:50