hey. I have a problem. jpgraph by the way
my data consists of
$accounts = $SESSION['Account_no'];
$providers = $SESSION['Provider'];
$total = $SESSION['Total'];
$date = $SESSION['date'];
which are all arrays with the same size and each array value [0] is linked to all the othe ones. so $accounts[0] is part of $providers[0] and total[0] and date[0] and so on till the array is empty.
currently I create a bar graph using $total as
$bplot = new BarPlot($total);
and my x axis is
$graph->xaxis->SetTickLabels($dates);
which works beautifully.
but the Provider and Account number is different for each array value (sometimes) and I dont know how can implement to show that each value in my $money array has a different legend or something. i dont know how to do it and I am not sue what to do either. All I need is somehow to see that all the array[0] infos is displayed for the first bar then the second bar etc etc. so you can see which bar has what provider and account number.
help