Hi Steema,
We are facing one problem that is when we draw a line series on chart the series is not looking smooth as shown in below figure:-
So kindly assist us to give the solution so we draw the line series smooth.
Thanks & regards
PlanoResearch
Smooth line series
Re: Smooth line series
Hello amol,
The code below do smoothing for us, using SootingMode as AntiAlias and setting smoothed line series propierty to true:
Could you confirm us if the code above fix the problem you're experiencing?
Thanks in advance
The code below do smoothing for us, using SootingMode as AntiAlias and setting smoothed line series propierty to true:
Code: Select all
Steema.TeeChart.TChart tChart1;
private void InitializeChart()
{
tChart1 = new Steema.TeeChart.TChart();
this.Controls.Add(tChart1);
tChart1.Dock = DockStyle.Fill;
tChart1.Aspect.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Line line1 = new Line(tChart1.Chart);
line1.Smoothed = true;
line1.FillSampleValues(10);
}
Thanks in advance
Best Regards,
Sandra Pazos / 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: Smooth line series
Hi Steama,
Thanks for the reply.
We have applied the code sent by you but we have still facing the same issue regarding the line smoothing.
For this we are sending one snap as showing below figure:-
So kindly assist us.
Thanks & regards
PlanoResearch
Thanks for the reply.
We have applied the code sent by you but we have still facing the same issue regarding the line smoothing.
For this we are sending one snap as showing below figure:-
So kindly assist us.
Thanks & regards
PlanoResearch
Re: Smooth line series
Hello Amol,
Could you send us a simple project where we can reproduce the problem you're experiencing? Also, could you tell us which TeeChartFor.Net version are you using?
Thanks in advance
Could you send us a simple project where we can reproduce the problem you're experiencing? Also, could you tell us which TeeChartFor.Net version are you using?
Thanks in advance
Best Regards,
Sandra Pazos / 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 |