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 414

Summary: [TF90015415] Setting the Bottom axis to be inverted, it crashes. With Left axis it...
Product: PHP TeeChart Reporter: yeray alonso <yeray>
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: RESOLVED FIXED    
Severity: major CC: yeray
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:25 EST
Setting the Bottom axis to be inverted, it crashes. With Left axis it works fine.
<?php
        //Includes
        require_once "../../sources/libTeeChart.php";
        $chart1 = new TChart(400,250);
        $series=new Bar($chart1->getChart());
        $chart1->getChart()->getSeries(0)->fillSampleValues(6);
        //$chart1->getAxes()->getLeft()->setInverted(true);
        $chart1->getAxes()->getBottom()->setInverted(true);
        
        $chart1->render();  
?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <title>Bar Charts</title>
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-15" />
</head>
<body>
</body>
</html> [created:2011-02-24T12:50:34.000+01:00 reported by:yeray@steema.com reported in version:TeeChart for PHP 1.0 (TeeChart PHP)]