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 2114 - 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: Java 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:34 EDT by yeray alonso
Modified: 2018-10-15 05:40 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:34:58 EDT
The fix for #2008 seems to create this issue
http://bugs.teechart.net/show_bug.cgi?id=2008

        tChart1.getLegend().setVisible(false);
        tChart1.getAspect().setView3D(false);

        FastLine fast1 = new FastLine(tChart1.getChart());

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

        fast1.setTreatNulls(TreatNullsStyle.DONOTPAINT);

        tChart1.getAxes().getLeft().setMinMax(0, 15);