Points are not shown correctly

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Stephan
Newbie
Newbie
Posts: 2
Joined: Tue May 26, 2009 12:00 am

Points are not shown correctly

Post by Stephan » Mon Jan 25, 2010 4:53 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Points are not shown correctly

Post by Narcís » Mon Jan 25, 2010 6:32 pm

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.

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Points are not shown correctly

Post by Narcís » Fri Feb 19, 2010 10:58 am

Hi Stephan,

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
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply