Hi,
having LineSeries the datapoints with Y-values lower than LeftAxis.Minimum are not shown:
But switching to 3D-view the datapoints with Y-values lower than LeftAxis.Minimum are visible:
Is there a possibility to make these points unvisible in 3D-view?
Best regards
Clipping of LineSeries
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Clipping of LineSeries
Hi Heinz,
I'm afraid not. This is a known issue in the wish-list (TV52013260) which we will try to enhance for future releases. It's not an easy one though. It will probably involve important series painting redesign.
I'm afraid not. This is a known issue in the wish-list (TV52013260) which we will try to enhance for future releases. It's not an easy one though. It will probably involve important series painting redesign.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Clipping of LineSeries
Hi Heinz,
As an update, a workaround could be using null points to hide the ones out of the axis range. Something like following:
As an update, a workaround could be using null points to hide the ones out of the axis range. Something like following:
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
var i: Integer;
begin
Series1.TreatNulls:=tnDontPaint;
Series1.IgnoreNulls:=false;
for i := 0 to Series1.Count-1 do
begin
if Series1.YValue[i] < Chart1.Axes.Left.Minimum then Series1.SetNull(i)
else Series1.SetNull(i,false);
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Clipping of LineSeries
Hi Narcis & Yeray,
many thanks for your answers.
In the meantime I also found a workaround by setting the valuecolor-property for these points to clNone.
Best regards
Heinz
many thanks for your answers.
In the meantime I also found a workaround by setting the valuecolor-property for these points to clNone.
Best regards
Heinz
Re: Clipping of LineSeries
Hi Heinz,
That's what null points do internally
That's what null points do internally
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |