Given a simple Plot[x, {x, -1, 1} GridLines->Automatic]
is there a way to apply transformation to the plot as well as the GridLines? For example
Plot[x, {x, -1, 1}, GridLines->Automatic]/.L_Line:>GeometricTransformation[L, ShearingTransform[Pi/4, {1,0}, {0,1}]]
will transform the plot but not the GridLines. Can the GridLines also be transformed?