Hello:
We are unable to
vary the height of the bar series even though the below property is given
properly. The bar series height and width gets adjusted by itself.
The
objective is the height of the Chart should remain same as well as the bar
inside of it. When only one bar for example, the width of the bar should not auto adjust to be fat.
<telerik:RadCartesianChart Palette="Windows8"
Grid.Row="1"
Grid.Column="0"
Grid.ColumnSpan="2"
Margin="0,0,0,-205">
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:LinearAxis Title="Days" />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:CategoricalAxis />
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:BarSeries PaletteMode="DataPoint"
ShowLabels="True"
ItemsSource="{Binding LstRunningBatch}"
CategoryBinding="BatchId"
MinWidth="10"
Width="15"
MaxWidth="20"
MinHeight="10"
Height="150"
MaxHeight="20"
ValueBinding="TotalDays">
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>