Hi Rico,
You may use the Layer.alignLayer method to align the box-whisker symbol to a bar. It is like (in PHP):
$layer = $c->addBoxWhiskerLayer(null, null, null, null, $myData);
$layer->alignLayer($myBarLayer, 1);
$layer->moveFront();
$layer->setDataGap(1 - 0.75 / 2);
Hope this can help.
Regards
Peter Kwan |