Page 1 of 1

Points are not shown correctly

Posted: Mon Jan 25, 2010 4:53 pm
by 15653371
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

Re: Points are not shown correctly

Posted: Mon Jan 25, 2010 6:32 pm
by narcis
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();
    }

Re: Points are not shown correctly

Posted: Fri Feb 19, 2010 10:58 am
by narcis
Hi Stephan,

A maintenance release fixing TF02014652 has been published now.