We are using NetAdvantage for WPF 2012.2. However, we could also update to the latest version.
Is it possible to create a Fan chart using the Infragistics chart control to show the uncertainty bands using different degree of shading?
Any help or suggestions would be greatly appreciated.Thanks!
Hello Borjanja,
One way you may be able to simulate this is by using multiple series
A line series to simulate the actual and central estimates
A range series to simulate the range between the central estimate and the maximum estimate
A range series to simulate the range between the central estimate and the minimum estimate
You could then use a linear gradient brush to color the two range series.
I have attached a sample illustrating this.
Please let me know if you have any questions.
Sincerely,
Valerie
Developer Support Supervisor - XAML
Infragistics
www.infragistics.com/support
Do you have any other questions on this matter?
Thank you very much Valerie!
I was testing with your example and it seems I can accomplish what I need.
One more question – how can I get rid of those gray lines that look like a border around the areas.
Thanks you!
Thank you very much! That's exactly what I need.
You can set the Outline of the RangeAreaSeries to transparent. For example:
<ig:RangeAreaSeries x:Name="MinEst" XAxis="{Binding ElementName=xAxis}" YAxis="{Binding ElementName=yAxis}"
ItemsSource="{Binding FanSource}" LowMemberPath="MinEstValue"
HighMemberPath="ActualCentralValue" Outline="Transparent">
Sincerely,Valerie Developer Support Supervisor - XAMLInfragisticswww.infragistics.com/support