Hi Tony,
You can achieve this by modifying the ControlTemplate of your ChartTitle. Here you can find the the style of the ChartTitle. I suggest that you modify the ControlTemplate like this:
<
Style
x:Key
=
"ChartTitleStyle"
TargetType
=
"telerik:ChartTitle"
>
<
Setter
Property
=
"Template"
>
<
Setter.Value
>
<
ControlTemplate
TargetType
=
"telerik:ChartTitle"
>
<
Border
BorderBrush
=
"{TemplateBinding OuterBorderBrush}"
BorderThickness
=
"{TemplateBinding OuterBorderThickness}"
>
<
Border
Background
=
"{TemplateBinding Background}"
BorderBrush
=
"{TemplateBinding BorderBrush}"
BorderThickness
=
"{TemplateBinding BorderThickness}"
CornerRadius
=
"{TemplateBinding CornerRadius}"
>
<
StackPanel
>
<
ContentControl
FontFamily
=
"{TemplateBinding FontFamily}"
FontSize
=
"{TemplateBinding FontSize}"
FontStyle
=
"{TemplateBinding FontStyle}"
FontWeight
=
"{TemplateBinding FontWeight}"
Foreground
=
"{TemplateBinding Foreground}"
HorizontalAlignment
=
"{TemplateBinding HorizontalContentAlignment}"
Margin
=
"{TemplateBinding Padding}"
VerticalAlignment
=
"{TemplateBinding VerticalContentAlignment}"
Content
=
"{TemplateBinding Content}"
/>
<
TextBlock
Text
=
"{Binding}"
FontFamily
=
"Georgia"
FontSize
=
"15"
Foreground
=
"Red"
HorizontalAlignment
=
"Center"
/>
</
StackPanel
>
</
Border
>
</
Border
>
</
ControlTemplate
>
</
Setter.Value
>
</
Setter
>
</
Style
>
After you finish the style, set the ChartTitle to use it, and then set the bindings:
Kind regards,
Petar Kirov
the Telerik team
Explore the entire Telerik portfolio by downloading the Ultimate Collection trial package. Get it now >>