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 - Null points sometimes drawn in FastLine with TreatNulls=tnDontPaint
Summary: Null points sometimes drawn in FastLine with TreatNulls=tnDontPaint
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Series (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-10-15 05:25 EDT by yeray alonso
Modified: 2018-10-15 05:26 EDT (History)
0 users

See Also:
Chart Series: FastLine
Delphi / C++ Builder RAD IDE Version:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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);