min, max, and average lines on a chart?

(2 posts) (2 voices)
  1. brad@foreverybody, Blocked

    I have a multi-spline chart showing sales over time and as expected its a wave but i would like to have some additional dotted/dashed straight lines of the same color representing the min, max, and average over the period. Is there any way to do this without having to complicate my chart query? It would be a really nice feature to do this without additional sql.

  2. myDBR Team, Key Master

    Brad,
    No such a chart exists directly. You could achieve it with some exrta code. Try using something like:

    select 'dbr.chart.options', 'chartdirector',
    '$yMark = $c->yAxis->addMark(80, 0xff0000, "Min");
    $yMark->setLineWidth(2);';

    --
    myDBR Team


Reply

You must log in to post.