Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
85
X Axis show differently with multiple series
posted

The intent that I have is to show a bell curve behind a bar chart.

When you have just the single series, the spline area displays edge to edge.  This is what I want to achieve.

When I add the BarChart series, the x-axis of the spline chart moves to the center of the column.  

How would I force the Spline Area series to display edge to edge?

<ic:XamDataChart x:Name="StanineChart"
Grid.Column="1"
Margin="0,20,20,20"
Brushes="{StaticResource GenderGraphBrushCollection}"
>
<ic:XamDataChart.Axes>
<ic:CategoryXAxis x:Name="XAxis" ItemsSource="{Binding BoysStanines1}" Label="{}{Stanine}" Title="Stanine" >
<ic:CategoryXAxis.LabelSettings>
<ic:AxisLabelSettings VerticalAlignment="Bottom" FontSize="14.667" />
</ic:CategoryXAxis.LabelSettings>
</ic:CategoryXAxis>
<ic:NumericYAxis x:Name="YAxis" Title="Count" >
<ic:NumericYAxis.LabelSettings>
<ic:AxisLabelSettings Extent="50" Location="OutsideLeft" FontSize="14.667" />
</ic:NumericYAxis.LabelSettings>
</ic:NumericYAxis>
</ic:XamDataChart.Axes>

<ic:XamDataChart.Series>
<ic:SplineAreaSeries ItemsSource="{Binding BellCurveData}" ValueMemberPath="Value"
XAxis="{Binding ElementName=XAxis}"
YAxis="{Binding ElementName=YAxis}">
</ic:SplineAreaSeries>

<ic:ColumnSeries Title="Feb1 - Mar30 2014 Boys"
Legend="{Binding ElementName=TitleLegend}"
XAxis="{Binding ElementName=XAxis}"
YAxis="{Binding ElementName=YAxis}"
ItemsSource="{Binding BoysStanines1}"
ValueMemberPath="Value"
/>
<ic:ColumnSeries Title="Feb1 - Mar30 2014 Girls"
Legend="{Binding ElementName=TitleLegend}"
XAxis="{Binding ElementName=XAxis}"
YAxis="{Binding ElementName=YAxis}"
ItemsSource="{Binding GirlsStanines1}"
ValueMemberPath="Value"
/>

</ic:XamDataChart.Series>

</ic:XamDataChart>

<ic:Legend x:Name="TitleLegend"
Grid.Column="1"
HorizontalAlignment="Right" VerticalAlignment="Top" Margin="20" Content="Legend"/>

Parents Reply Children
No Data