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 - [TF90015415] Setting the Bottom axis to be inverted, it crashes. With Left axis it...
Summary: [TF90015415] Setting the Bottom axis to be inverted, it crashes. With Left ax...
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: 2011-02-24 12:50 EST by yeray alonso
Modified: 2014-10-20 09: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 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)]