VisualizationsForVaadin: how to change the chart size?

How can I change the size of the chart?

I create chart using


AnnotatedTimeLine atl = new AnnotatedTimeLine();
atl.setOption("displayAnnotations", false);
atl.setOption("displayRangeSelector", true);
// .... add data etc here.
atl.setHeight("700px");
atl.setWidth("1000px");

setHeight and setWidth changes the of the AnnotatedTimeLine component. But the actual chart that is drawn (Adobe flash area) is always the same size.

Hi Kimmo

I set the size with css.

.v-annotatedtimeline.v-annotatedtimeline embed{
    width: 479px;
        height: 200px;
}

Greets