Добрый день!
Почему-то не отображаются графики на экране, дискриптор ниже приведен
<layout>
<hbox>
<vbox>
<chart:serialChart id="countDomainByPlanColumnChart"
addClassNames="true"
autoMargins="false"
categoryField="name"
dataContainer="countDomainByDepPlanDc"
height="100%"
marginBottom="50"
marginLeft="60"
theme="LIGHT"
startDuration="0"
width="100%">
<chart:categoryAxis autoWrap="true"/>
<chart:chartCursor categoryBalloonEnabled="true"/>
<chart:valueAxes>
<chart:axis gridAlpha="0.07"
position="LEFT"
autoGridCount="false"
gridCount="3"
title="Количество столбцов"/>
</chart:valueAxes>
<chart:balloon adjustBorderColor="false"
color="WHITE"
horizontalPadding="10"
verticalPadding="8"/>
<chart:graphs>
<chart:graph alphaField="alpha"
balloonText="<span style='font-size:12px;'>[[title]] [[category]]:<br>
<span style='font-size:20px;'>[[value]]</span> [[additional]]</span>"
dashLengthField="dashLengthColumn"
fillAlphas="1"
type="COLUMN"
valueField="count"/>
</chart:graphs>
</chart:serialChart>
<chart:pieChart id="depPlanByStatusPieChart"
dataContainer="depPlanByStatusDc"
height="100%"
titleField="status"
valueField="count"
width="100%"
labelsEnabled="true">
</chart:pieChart>
</vbox>
</hbox>
<hbox>
<vbox>
<hbox id="userDepPlansHbox" height="100%" width="100%" spacing="true" margin="true">
<vbox height="100%" expand="userDepPlansTable" spacing="true" margin="true">
<table id="userDepPlansTable" dataContainer="plansDc"
width="100%"
align="MIDDLE_CENTER">
<columns>
<column id="name"
caption="msg://name.caption"/>
<column id="status" caption="msg:///status.caption"/>
<column id="userName" caption="msg://userName.caption"/>
<column id="lastModifiedDate" caption="msg://lastModifiedDate.caption"
sort="DESCENDING" />
</columns>
</table>
</vbox>
</hbox>
</vbox>
</hbox>
</layout>
На экране это выглядит вот так (отображается только таблица), а charts не отображаются. А должно вот так (подписал красным)
Может быть я неправильно vbox и hbox применяю и не прописал нужные porperty для отображения?