I have Working Column Series.
I have around 50+ multiple column series to display, when there are more number of bars it shrinks the bar width and adjusts to chart width.
So i want to add a scroll only to Category Axis X and scroll horizontally with fixing the width of bars, if its more number of series the X axis should stretch horizontally.
here is the screen shot:

In the screen shot you can see that the 3rd series is cutting, and its not scrolling.
This is what i have tried:
<charting:Chart Name="barChart"
Style="{StaticResource PhoneChartStyle}"
Template="{StaticResource BarChartTemplate}">
<charting:Chart.Axes>
<charting:LinearAxis ShowGridLines="True" Title="Scores" Orientation="Y" Minimum="0" Maximum="50" Interval="10"/>
<charting:CategoryAxis HorizontalContentAlignment="Stretch"
HorizontalAlignment="Stretch"
Title="Fruits"
Width="1000"
Orientation="X"
ScrollViewer.HorizontalScrollBarVisibility="Visible">
</charting:CategoryAxis>
</charting:Chart.Axes>
<charting:Chart.Series>
<charting:ColumnSeries
Title="Apple"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}"
AnimationSequence="Simultaneous">
</charting:ColumnSeries>
<charting:ColumnSeries
Title="Oranges"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}"
AnimationSequence="Simultaneous">
</charting:ColumnSeries>
<charting:ColumnSeries
Title="Guava"
IndependentValueBinding="{Binding Key}"
DependentValueBinding="{Binding Value}"
AnimationSequence="Simultaneous">
</charting:ColumnSeries>
</charting:Chart.Series>
</charting:Chart>*