Why does
AbsoluteOptions[
Plot[Sin[x], {x, 0, 2 Pi},
PlotRange -> Automatic,
PlotStyle -> Red],
PlotRange]
(properly) return {PlotRange -> {{0., 6.28319}, {-1., 1.}}}
but
AbsoluteOptions[
Plot[Sin[x], {x, 0, 2 Pi},
PlotRange -> Automatic,
PlotStyle -> Red],
PlotStyle]
not return the Red?
Options[Plot[....], opts]andAbsoluteOptions[Plot[...], opts]work only foroptsthat are options forGraphics(PlotStyle,ColorFunction,MeshFunctions,Mesh,RegionFunctionetc are options forPlotbut not forGraphics.) – kglr Dec 19 '20 at 03:55