How do you make a heatmap with square axis (equal length axis)? When I use the following I get a square image but the x-axis span is (-1.8, 1.8) instead of (-1,1)
PlotModel = new PlotModel { Title = "Heatmap Example" };
PlotModel.PlotType = PlotType.Cartesian;
PlotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Bottom, Minimum = -1, Maximum = 1, Title = "U", MajorStep = 0.2 });
PlotModel.Axes.Add(new LinearAxis { Position = AxisPosition.Left, Minimum = -1, Maximum = 1, Title = "V", MajorStep = 0.2 });
When I set an AbsoluteMinimum and AbsoluteMaximum the image stretches the aspect ratio.