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 1624 - Histogram series with null points does not paint as expected and set's the Transparency to 100
Summary: Histogram series with null points does not paint as expected and set's the Tr...
Status: RESOLVED FIXED
Alias: None
Product: .NET TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: TeeChart for .Net 4.1.2016.05125
Hardware: PC Windows
: --- major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-09-08 04:49 EDT by Sunil Ramesh
Modified: 2016-09-23 13:30 EDT (History)
1 user (show)

See Also:
Chart Series: ---
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 Sunil Ramesh 2016-09-08 04:49:49 EDT
Hello,

Histogram series with null points does not paint as expected and set's the Transparency to 100.

example:

         Histogram series = new Histogram(tChart1.Chart);
         series.TreatNulls = TreatNullsStyle.Skip;
         series.FillSampleValues(30);
         series.SetNull(10);
         series.XValues[10] = 0;
         series.SetNull(11);
         series.XValues[11] = 0;
         series.SetNull(12);
         series.XValues[12] = 0;