Clipping problem with 3D surface
Posted: Fri Aug 26, 2005 11:20 pm
When I set the minimum value for the bottom axis to a higher value, the left wall does not clip the chart.
To demonstrate, my form contains a commander bar and a chart edior. After the chart is shown, change the view such that you see the left wall clearly and press the button on the form to change the minimum value. When I use OpenGL, the problem is very visible.
--Paul
To demonstrate, my form contains a commander bar and a chart edior. After the chart is shown, change the view such that you see the left wall clearly and press the button on the form to change the minimum value. When I use OpenGL, the problem is very visible.
--Paul
Code: Select all
procedure TForm1.FormShow(Sender: TObject);
var
mySeries: TSurfaceSeries;
begin
mySeries := TSurfaceSeries.Create(Chart1);
mySeries.FillSampleValues(50);
Chart1.AddSeries(mySeries);
Chart1.Legend.Visible := false;
end;
procedure TForm1.Button1Click(Sender: TObject);
begin
Chart1.BottomAxis.AutomaticMinimum := false;
Chart1.BottomAxis.Minimum := 10;
end;