So, I faced this problem, which is probably because of the bug.
Let's plot a simple 2D graph.
sample2dPlot =
ListPlot[RandomReal[{-1, 1}, 100], Background -> White,
Frame -> True, FrameLabel -> {"x", "y"}]
Let's try to use it as the Epilog to the MatrixPlot
MatrixPlot[RandomReal[{-1, 1}, {100, 100}], PlotLegends -> Automatic,
Epilog -> Inset[sample2dPlot]]
The frame disappeared, the frame labels disappeared.
Does anybody know how to solve this problem?
Thank you.


