hi
please see below image for more clear picture please see this images
the horizontal grid lines (which are gray in color) are overlapping on the axes on the right side(black in color).
in 400% zoom the lines are more cleares and it looks like the right side axis is cutting.
please give us any solution so that we can resolve this defect.
thank in advance.
The horizontal grid lines are overlapped on right axes
Re: The horizontal grid lines are overlapped on right axes
Hello Pradip,
I could reproduce your problem with last versions of TeeChartFor .Net, and I have conciderated add to list bug reports with number [TF02014289], we will try to fix it for next versions of TeeChart .NET.
On the other hand, I make a simple code that solve your problem,drawing directly in the canvas a line.Please check that next code works fine in your application.
I hope that will helps.
Thanks,
I could reproduce your problem with last versions of TeeChartFor .Net, and I have conciderated add to list bug reports with number [TF02014289], we will try to fix it for next versions of TeeChart .NET.
On the other hand, I make a simple code that solve your problem,drawing directly in the canvas a line.Please check that next code works fine in your application.
Code: Select all
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Line line = new Steema.TeeChart.Styles.Line(tChart1.Chart);
line.FillSampleValues();
tChart1.AfterDraw += new Steema.TeeChart.PaintChartEventHandler(tChart1_AfterDraw);
tChart1.Draw();
}
void tChart1_AfterDraw(object sender, Steema.TeeChart.Drawing.Graphics3D g)
{
Rectangle rect = new Rectangle();
rect = tChart1.Chart.ChartRect;
g.Pen.Color = tChart1.Axes.Left.AxisPen.Color;
g.VerticalLine(rect.Right,rect.Top,rect.Bottom);
}
Thanks,
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: The horizontal grid lines are overlapped on right axes
hi Sandra,
thanks for the suggetion.
i had tried your code to resolve this problem, at first it looks ok, but if we zoom to 400 there are still small lines shows on the vertical right axes, which was not accepted at our end.
can you please let us know when you are planning next relaease?
Regards
Pradip.
thanks for the suggetion.
i had tried your code to resolve this problem, at first it looks ok, but if we zoom to 400 there are still small lines shows on the vertical right axes, which was not accepted at our end.
can you please let us know when you are planning next relaease?
Regards
Pradip.
Re: The horizontal grid lines are overlapped on right axes
Hello Pradip,
Also, we recommend you to be aware at this forum or subscribe to our RSS news feed (http://www.steema.com/news/Steema.xml) for new release announcements and what's fixed on them.
Thanks,
I couldn't reproduce your problem here, please you could send us a simple example project we can run "as-is", to reproduce the problem here? Now, you can attach your project direcly in forums post.i had tried your code to resolve this problem, at first it looks ok, but if we zoom to 400 there are still small lines shows on the vertical right axes, which was not accepted at our end.
Next TeeChart for .NET 2009 release is due out on week 33 (from 10th to 16th August). However, we can't promise this issue will be fixed for this release yet. A date for next TeeChart for .NET v3 release hasn't been fixed yet.can you please let us know when you are planning next relaease?
Also, we recommend you to be aware at this forum or subscribe to our RSS news feed (http://www.steema.com/news/Steema.xml) for new release announcements and what's fixed on them.
Thanks,
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 |