PHP Classes

Fix for broken image

Recommend this page to a friend!

      Bar and Line Point Chart  >  All threads  >  Fix for broken image  >  (Un) Subscribe thread alerts  
Subject:Fix for broken image
Summary:Fix for broken line graph in example.php
Messages:1
Author:Michael Schulz
Date:2009-08-11 11:54:37
 

  1. Fix for broken image   Reply   Report abuse  
Picture of Michael Schulz Michael Schulz - 2009-08-11 11:54:37
Just add a line like:

if (!isset($total)) $total=0;

at an appropriate place (e.g. in line 258 right after the comment "DRAWING DATA") and the error should go away. The problem was the call "$total += $caption;" in line 269 when $total wasn't initialized yet.