Hi Folks,
since the last update (Ver. 4.2009.42283) the Points in Lineseries or Poinseries are not show correctly.
If the point ist white and the border for example red then in the Point of Diamond or Triangle(up,down,left, right) are Lines missing.
Is threre a fix or wold there be an update?
Thanks for your help in advance
Stephan
Points are not shown correctly
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Points are not shown correctly
Hi Stephan,
Thanks for reporting the issue. I've been able to reproduce it in 2D using the code snippet below and added it to the defect list to be fixed ASAP with ID. TF02014652.
Thanks for reporting the issue. I've been able to reproduce it in 2D using the code snippet below and added it to the defect list to be fixed ASAP with ID. TF02014652.
Code: Select all
public Form1()
{
InitializeComponent();
InitializeChart();
}
private void InitializeChart()
{
tChart1.Aspect.View3D = false;
Steema.TeeChart.Styles.Points points1 = new Steema.TeeChart.Styles.Points(tChart1.Chart);
points1.Pointer.Brush.Color = Color.White;
points1.Pointer.Pen.Color = Color.Red;
points1.Pointer.Style = Steema.TeeChart.Styles.PointerStyles.Diamond;
points1.FillSampleValues();
}
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 |
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Points are not shown correctly
Hi Stephan,
A maintenance release fixing TF02014652 has been published now.
A maintenance release fixing TF02014652 has been published now.
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 |