Hi there,
I am trying dynamically add area series but I don't know how to set Combined property in a code behind.
In XAML it look like
But in C# I am having difficulty to find properties "Stack, Stack100 ... "
Could you guys help me? Thanks!
I am trying dynamically add area series but I don't know how to set Combined property in a code behind.
In XAML it look like
<telerik:AreaSeries CombineMode="Stack"></telerik:AreaSeries>But in C# I am having difficulty to find properties "Stack, Stack100 ... "
AreaSeries newSer1 = new AreaSeries();newSer1.Focusable = true;newSer1.ItemsSource = new List<int> { 1, 2, 3 };newSer1.CombineMode = ???Could you guys help me? Thanks!