Mini Kabibi Habibi
<local:ChartsDemoModule x:Class="ChartsDemo.AnimationControl" Height="400" Width="800"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dx="http://schemas.devexpress.com/winfx/2008/xaml/core"
xmlns:dxdb="http://schemas.devexpress.com/winfx/2008/xaml/demobase"
xmlns:dxc="http://schemas.devexpress.com/winfx/2008/xaml/charts"
xmlns:dxe="http://schemas.devexpress.com/winfx/2008/xaml/editors"
xmlns:collections="clr-namespace:System.Collections;assembly=mscorlib"
xmlns:local="clr-namespace:ChartsDemo"
ModuleAppear="ChartsDemoModule_ModuleAppear">
<local:ChartsDemoModule.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/ChartsDemo;component/Themes/Generic.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</local:ChartsDemoModule.Resources>
<dxdb:DemoModuleControl SupressGroupFramePaddingInOptions="False">
<dxdb:DemoModuleControl.OptionsContent>
<StackPanel MinWidth="120">
<dxe:ComboBoxEdit Name="cbSeriesTypes"
Background="{x:Null}"
IsTextEditable="False"
PopupMaxHeight="450"
SelectedIndexChanged="cbSeriesTypes_SelectedIndexChanged" />
<dx:GroupFrame Header="Point Animation" Margin="0,10,0,0">
<dxe:ListBoxEdit Name="lbPointAnimation"
Background="{x:Null}"
ShowBorder="False"
SelectedIndexChanged="lbPointAnimation_SelectedIndexChanged">
<dxe:ListBoxEdit.StyleSettings>
<dxe:RadioListBoxEditStyleSettings />
</dxe:ListBoxEdit.StyleSettings>
</dxe:ListBoxEdit>
</dx:GroupFrame>
<dx:GroupFrame Header="Series Animation" Margin="0,10,0,0">
<dxe:ListBoxEdit Name="lbSeriesAnimation"
Background="{x:Null}"
ShowBorder="False"
SelectedIndexChanged="lbSeriesAnimation_SelectedIndexChanged">
<dxe:ListBoxEdit.StyleSettings>
<dxe:RadioListBoxEditStyleSettings />
</dxe:ListBoxEdit.StyleSettings>
</dxe:ListBoxEdit>
</dx:GroupFrame>
</StackPanel>
</dxdb:DemoModuleControl.OptionsContent>
<Grid>
<dxc:ChartControl Name="chart" BorderThickness="0" ToolTipEnabled="False" CrosshairEnabled="False"/>
</Grid>
</dxdb:DemoModuleControl>
</local:ChartsDemoModule>