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 412

Summary: [TF90016024] The line series in 2D don't draw the line segments with a 0 value. ...
Product: PHP TeeChart Reporter: yeray alonso <yeray>
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: major CC: pep
Priority: Normal    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: All   
Chart Series: --- Delphi / C++ Builder RAD IDE Version:

Description yeray alonso 2013-11-20 12:03:20 EST
The line series in 2D don't draw the line segments with a 0 value.
    include "../sources/TChart.php";               
             
    $chart1 = new TChart(800,600);
    $chart1->getAspect()->setView3D(false);
    $line=new Line($chart1->getChart());
    $line->getPointer()->setVisible(true);
    for($i=0; $i<6; $i++) {
        $line->add($i*10 - 30);
    }
    $chart1->render();
http://www.teechart.net/support/viewtopic.php?f=11&t=13017&view=unread#unread [created:2012-02-08T12:55:58.000+01:00 reported by:yeray@steema.com reported in version:TeeChart for PHP 1.0 (TeeChart PHP)]