or
Hi,
First of all, sorry for my english ...
I just want to know if it's possible to have aggregate function for a child grid (hierarchy) as we can have with the grouping grid
(like the example Grouping aggregates)
thanks
Steph
<my:ColorConverter x:Key="ColorConverter"/> |
<Style TargetType="{x:Type telerik:GridViewCell}"> |
<Setter Property="Background"> |
<Setter.Value> |
<SolidColorBrush Color="{Binding Converter={StaticResource ColorConverter}}"></SolidColorBrush> |
</Setter.Value> |
</Setter> |
</Style> |
<telerik:GridViewDataColumn IsFilterable="False" HeaderText="{local:Caption Key=memberNumberShort}" UniqueName="MemberNumber"/> |
private void LocalizationContext_CultureChanged(object sender, EventArgs e) { |
if (targetObject != null && targetProperty != null) { |
targetObject.SetValue(targetProperty, LocalizationContext.Instance.Captions[key]); |
} |
} |
public override object ProvideValue(IServiceProvider serviceProvider) { |
var targetHelper = (IProvideValueTarget)serviceProvider.GetService(typeof(IProvideValueTarget)); |
targetObject = targetHelper.TargetObject as DependencyObject; |
targetProperty = targetHelper.TargetProperty as DependencyProperty; |
return LocalizationContext.Instance.Captions[key]; |
} |
<
Style TargetType="{x:Type telerik:AxisXLabel2D}">
<Setter Property="Foreground" Value="Red" />
</Style>
Thanks for your reply!
Marek