Defined Colors in Charts

Donatus
edited February 11, 2022 in Analytics #1
Hi,

perhaps somebody can support me.

I would like to make a Pie-Chart with defined Colors for the Categories i.e.
the Categories are States: US is always blue - Spain is always green ...
The Color matching should also be implented via die Datasource.
Is that possible with BIRT?

Thanks.

Comments

  • Virgil Dodson
    Virgil Dodson E admin
    edited December 31, 1969 #2
    Hi Donatus,

    The colors of the pie pieces can be set with script. Try something like:

    function beforeDrawDataPoint(dph, fill, icsc)
    {

    if (dph.getBaseDisplayValue().equals("USA")) {
    fill.set(0,0,255)
    } else if (dph.getBaseDisplayValue().equals("Spain")) {
    fill.set(0,255,0)
    }
    }
    Warning No formatter is installed for the format ipb