Hi John,
The chart you attached is just a regular "Multi-Bar Chart" (not a stacked bar chart) with a zoned background color. The data values can represent anything you like, such as representing the "% difference relative to a baseline". The zoned background can created using Axis.addZone. For example, you can create the chart with the plot area being red in color, and then add a zone for the positive range, like:
$c->yAxis->addZone(0, 999999, $myGreenColor);
For the "Multi-Bar Chart", you may refer to the "Multi-Bar Chart" sample code included in ChartDirector for an example. If you mean a "Stacked Bar Chart" instead, please refer to the "Stacked Bar Chart" sample code.
Hope this can help.
Regards
Peter Kwan |