Hi Domonique,Thanks for this, what your saying could well work ill give it a try.Just one final thing:I am trying to apply a StringFormat to the values that appear in tooltips when you hover over the charts:The code which returns the tooltips is as follows: <ToolTipService.ToolTip>
<StackPanel>
<StackPanel Orientation="Horizontal">
<ContentControl Content="{TemplateBinding IndependentValue }" />
<TextBlock Text=" �?? "></TextBlock>
<ContentControl Content="{TemplateBinding FormattedDependentValue}" />
</StackPanel>
</StackPanel>
</ToolTipService.ToolTip>
I have tried to set the StringFormat for the DependentValueBinding within the ColumnSeries: <toolkit:ColumnSeries Margin="0"
IndependentValueBinding="{Binding Path=Key}"
DependentValueBinding="{Binding Path=Value, StringFormat=c0, ConverterCulture=en-GB}" >
</toolkit:ColumnSeries>
</toolkit:Chart.Series>
However this returns the following error on Runtime:Microsoft JScript runtime error: Unhandled Error in Silverlight Application Code: 4004 Category: ManagedRuntimeError Message: System.NullReferenceException: Object reference not set to an instance of an object.A workaround I have found has been to set the DependentValueStringFormat within a Setter Property: <toolkit:Chart.Series>
<toolkit:ColumnSeries Margin="0"
IndependentValueBinding="{Binding Path=Key}"
DependentValueBinding="{Binding Path=Value}" >
<toolkit:ColumnSeries.DataPointStyle>
<Style TargetType="charting:ColumnDataPoint">
<Setter Property="DependentValueStringFormat" Value="{}{0:c}" />
</Style>
</toolkit:ColumnSeries.DataPointStyle>
</toolkit:ColumnSeries>
</toolkit:Chart.Series>
This works, however all of the columns are displayed in yellow and do not use the stying template that I have setup in my xaml. The formatting style of the tooltip is also no longer used.Do you have any idea how I can achieve this simple re-formatting for the DependentValue whilst preserving the formatted as defined for the tooltip?ThanksDave