|
|
|
Junior Member
      
Group: Forum Members
Last Login: 8/5/2008 1:52:29 AM
Posts: 11,
Visits: 28
|
|
Hello,
I am currently using Fusion charts, and I'm loving it; however, I'm experiencing some problems. I'm creating Area graphs for a set of Letter Grades which appear on the x-axis of course. However, when it comes to displaying the graphs, I notice that A+, B+, C+, D+ always show up without the +.
$gradecheck = array('A+', 'A', 'B+', 'B', 'C+', 'C', 'D+', 'D', 'E', 'F'); <- is the array that I'm keeping the letter grades in.
Post #7191
|
|
|
|
Supreme Being
      
Group: Forum Members
Last Login: Today @ 9:08:48 AM
Posts: 207,
Visits: 1,089
|
|
Hi Blunz, Please use %2b for "+"$gradecheck = array('A%2b', 'A', 'B%2b', 'B', 'C%2b', 'C', 'D%2b', 'D', 'E', 'F');
Thanks, Arindam FusionCharts Team www.fusioncharts.com
|
|
|
|
|
Junior Member
      
Group: Forum Members
Last Login: 8/5/2008 1:52:29 AM
Posts: 11,
Visits: 28
|
|
| sweet! Thank you very much!
|
|
|
|
|