Im trying to create a xaml where i have 4 radcharts aligned horizontally.
every chart should take 25% of the available space.
any ideas how to do this?
every chart should take 25% of the available space.
any ideas how to do this?
<
StackPanel
HorizontalAlignment
=
"Stretch"
Name
=
"stackPanel1"
Orientation
=
"Horizontal"
>
<
telerik:RadChart
Name
=
"radChart1"
/>
<
telerik:RadChart
Name
=
"radChart2"
/>
<
telerik:RadChart
Name
=
"radChart3"
/>
<
telerik:RadChart
Name
=
"radChart4"
/>
</
StackPanel
>