My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Earlier this year

  • Oct 30, 2009
    issue 3 (Bar graphs will not default to 0) reported by trajanmarketing   -   What steps will reproduce the problem? 1. bar data where the min > 0 2. 3. What is the expected output? What do you see instead? You get a bar graph with your lowest value on the x-axis, making it appear to a user that it is, in fact, 0 What version of the product are you using? On what operating system? Please provide any additional information below. This modification fixes the problem: search for chds and replace the line with the following code: 'chds' => ($this->min != $this->max) ? min(0,$this->min).','.$this->max : null, // Data scale
    What steps will reproduce the problem? 1. bar data where the min > 0 2. 3. What is the expected output? What do you see instead? You get a bar graph with your lowest value on the x-axis, making it appear to a user that it is, in fact, 0 What version of the product are you using? On what operating system? Please provide any additional information below. This modification fixes the problem: search for chds and replace the line with the following code: 'chds' => ($this->min != $this->max) ? min(0,$this->min).','.$this->max : null, // Data scale

Older

  • Nov 17, 2008
    issue 2 (Two Values of "1" result in a missing chart, but title still...) commented on by mjar81   -   Fix attached. I've also improved the min and max finding code. Change this line: 'chds' => $this->min.','.$this->max, // Data scale To: 'chds' => ($this->min != $this->max) ? $this->min.','.$this->max : null, // Data scale See attached file for the changes to the $this->min and $this->max calculations... it takes less CPU cycles my way using the built in PHP min() and max() functions.
    Fix attached. I've also improved the min and max finding code. Change this line: 'chds' => $this->min.','.$this->max, // Data scale To: 'chds' => ($this->min != $this->max) ? $this->min.','.$this->max : null, // Data scale See attached file for the changes to the $this->min and $this->max calculations... it takes less CPU cycles my way using the built in PHP min() and max() functions.
  • Nov 17, 2008
    issue 2 (Two Values of "1" result in a missing chart, but title still...) commented on by mjar81   -   Fix attached. I've also improved the min and max finding code. Change this line: 'chds' => $this->min.','.$this->max, // Data scale To: 'chds' => ($this->min != $this->max) ? $this->min.','.$this->max : null, // Data scale See attached file for the changes to the $this->min and $this->max calculations... it takes less CPU cycles my way using the built in PHP min() and max() functions.
    Fix attached. I've also improved the min and max finding code. Change this line: 'chds' => $this->min.','.$this->max, // Data scale To: 'chds' => ($this->min != $this->max) ? $this->min.','.$this->max : null, // Data scale See attached file for the changes to the $this->min and $this->max calculations... it takes less CPU cycles my way using the built in PHP min() and max() functions.
  • Nov 17, 2008
    issue 2 (Two Values of "1" result in a missing chart, but title still...) reported by mjar81   -   What steps will reproduce the problem? 1. Take first Pie Chart example, and remove all but two elements. 2. Set both their values to "1" 3. Data: $data = array( 'IE7' => 1, 'IE6' => 1 ); What is the expected output? What do you see instead? A pie chart with 1/2 IE7, 1/2 IE6 What version of the product are you using? On what operating system? Windows XP (virtualized), PHP 5.2.6, IIS
    What steps will reproduce the problem? 1. Take first Pie Chart example, and remove all but two elements. 2. Set both their values to "1" 3. Data: $data = array( 'IE7' => 1, 'IE6' => 1 ); What is the expected output? What do you see instead? A pie chart with 1/2 IE7, 1/2 IE6 What version of the product are you using? On what operating system? Windows XP (virtualized), PHP 5.2.6, IIS
  • Nov 13, 2008
    issue 1 (Error) reported by mwdross   -   What steps will reproduce the problem? 1. Run the example program with Apache 2.0 on linux 2. 3. What is the expected output? What do you see instead? No output What version of the product are you using? On what operating system? Current, CentOS 4.7 Please provide any additional information below. Here is the error message the Apache log file leaves. [client xx.71.209.206] PHP Parse error: parse error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /var/www/html/GoogChart.class.php on line 36
    What steps will reproduce the problem? 1. Run the example program with Apache 2.0 on linux 2. 3. What is the expected output? What do you see instead? No output What version of the product are you using? On what operating system? Current, CentOS 4.7 Please provide any additional information below. Here is the error message the Apache log file leaves. [client xx.71.209.206] PHP Parse error: parse error, unexpected T_CONST, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /var/www/html/GoogChart.class.php on line 36
 
Hosted by Google Code