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 1177

Summary: Smoothed property duplicates the series in the editor
Product: Java TeeChart Reporter: yeray alonso <yeray>
Component: SeriesAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: enhancement CC: marc
Priority: ---    
Version: 3.2015.0108   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2015-03-25 06:24:05 EDT
Having some Line or Area series, if you activate the Smoothed property:
- The smoothed series created internally are also visible in the editor.
- The legend symbol is lost.

  tChart1.getAspect().setView3D(false);
  for (int i=0; i<2; i++) {
    Area area = new Area(tChart1.getChart());
    area.fillSampleValues();
    area.setSmoothed(true);
  }
Comment 1 marc meumann 2016-04-14 07:53:50 EDT
By design ... The smoothing is a function Series. Latest update will include inline Smoothing for Line and Area Series, modifying the Series itself directly.