Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 2113

Summary: Null points sometimes drawn in FastLine with TreatNulls=tnDontPaint
Product: .NET TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement    
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: FastLine Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2018-10-15 05:25:38 EDT
The fix for #2007 seems to create this issue
http://bugs.teechart.net/show_bug.cgi?id=2007

            tChart1.Legend.Visible = false;
            tChart1.Aspect.View3D = false;

            FastLine fast1 = new FastLine(tChart1.Chart);

            for (int i = 0; i < 20; i++)
                if (i == 10)
                    fast1.Add();
                else
                    fast1.Add(10);

            fast1.TreatNulls = TreatNullsStyle.DoNotPaint;

            tChart1.Axes.Left.SetMinMax(0, 15);