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 - [TF90016024] The line series in 2D don't draw the line segments with a 0 value. ...
Summary: [TF90016024] The line series in 2D don't draw the line segments with a 0 valu...
Status: RESOLVED FIXED
Alias: None
Product: PHP TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: unspecified
Hardware: All All
: Normal major
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-02-08 12:55 EST by yeray alonso
Modified: 2015-09-15 06:01 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 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)]