ok, I found it. I need to modify two places:

AbstractDistributionMap >> renderOn: viewthis:

    view
                nodes: nodes
                forEach: [ :node |
                    (view shape label)
                        withoutBorder;
                        fontSize: 7.
                    view node: node name.

to

    view
                nodes: nodes
                forEach: [ :node |
                    (view shape label)
                        withoutBorder;
                        fontSize: 12.
                    view node: node name.


And DistributionMap >> renderLegendOn: view

this:
            view shape label.

to:

view shape label fontSize: 12.


so....I would like to automatically use the font size I defined in the settings. I will look how to do that.

cheers

mariano

On Wed, Nov 3, 2010 at 3:04 PM, Mariano Martinez Peck <marianopeck@gmail.com> wrote:
Hi. I need to have larger fonts for the legends of a DistributionMap. For example, in the attached screenshot I would like to use bigger fonts for the properties and for the packages names.

Is that possible?  I surf a little the code but I didn't find anything.

Thanks in advance,

Mariano