AutomaticTimeSpanScaleOptions.CustomAggregateFunction Property
Gets or sets the custom aggregate function callback that calculates the aggregated values.
Namespace: DevExpress.Xpf.Charts
Assembly: DevExpress.Xpf.Charts.v24.1.dll
NuGet Package: DevExpress.Wpf.Charts
Declaration
Property Value
Type | Description |
---|---|
CustomAggregateFunction | The custom aggregate function callback. |
Remarks
Do the following to create an aggregate function:
Set the AggregateFunction property to Custom.
Develop a class that inherits the CustomAggregateFunction class.
Override the CustomAggregateFunction.Calculate(GroupInfo) method.
Initialize the CustomAggregateFunction property with a newly created aggregate function class instance.
<Window
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:TimeSpanExample"
xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
x:Class="TimeSpanExample.MainWindow"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Window.DataContext>
<local:ChartViewModel/>
</Window.DataContext>
<Grid>
<dxc:ChartControl>
<dxc:XYDiagram2D>
<!-- Series settings are skipped. -->
<dxc:XYDiagram2D.AxisX>
<dxc:AxisX2D>
<dxc:AxisX2D.TimeSpanScaleOptions>
<dxc:AutomaticTimeSpanScaleOptions AggregateFunction="Custom">
<dxc:AutomaticTimeSpanScaleOptions.CustomAggregateFunction>
<local:StandardDeviationAggregateFunction/>
</dxc:AutomaticTimeSpanScaleOptions.CustomAggregateFunction>
</dxc:AutomaticTimeSpanScaleOptions>
</dxc:AxisX2D.TimeSpanScaleOptions>
</dxc:AxisX2D>
</dxc:XYDiagram2D.AxisX>
</dxc:XYDiagram2D>
</dxc:ChartControl>
</Grid>
</Window>
See Also