Describe the bug
When using the middle mouse "rectangle" zoom on a PlotSignal WinForm plot, the result shows empty graph, with no ticks and labels on X-axis. When using the right mouse click zoom options, everything works as expected.
To Reproduce
Create a Winform PlotSignal plot, and use the middle mouse zoom.
Some relevant code parts:
formsPlot1.plt.YLabel("Sensor 1 Temperature (°C)");
formsPlot1.plt.Ticks(dateTimeX: true);
formsPlot1.plt.AxisAuto();
formsPlot1.plt.AntiAlias(true, true);
formsPlot1.plt.PlotSignal(temp1Data.ToArray(), sampleRate: rate, xOffset: timeOffset.ToOADate(), color: Color.Blue, lineWidth: 2, markerSize: 6);
formsPlot1.Render();

