I have a requirement to highlight the point in Line chart based on selected ComboBox value. For example the selected value in combo box is "2010" then chart should be like this.
Does Infragistic chart support this feature? Is there any work around to do this?
Sorry, the chart doesn't support this feature, but you should be able to fake it with a column series. You can create one point in the column series for each point in the line series. Toggle the columns by setting the point value based on the index of the line's point. So, for the 2010 column, set the fourth point to 90 and others to 0.
Thanks Max, your answer gave me an idea to achive me requirements. Although I am new on Chart but with the help of documentation, I created a chart.
Here is my code
<igChart:XamWebChart x:Name="theChart" Width="Auto" Height="350" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Margin="0">
<igChart:XamWebChart.Series>
<igChart:Series ChartType="Line" >
<igChart:Series.Marker><igChart:Marker Type="Rectangle" /></igChart:Series.Marker>
<igChart:Series.DataPoints>
<igChart:DataPoint Value="55" Label="2007" />
<igChart:DataPoint Value="45" Label="2008" />
<igChart:DataPoint Value="36" Label="2009" />
<igChart:DataPoint Value="67" Label="2010" />
<igChart:DataPoint Value="80" Label="2011" />
<igChart:DataPoint Value="55" Label="2012" />
<igChart:DataPoint Value="50" Label="2013" />
</igChart:Series.DataPoints>
</igChart:Series>
<igChart:Series ChartType="Column" Opacity=".5">
<igChart:DataPoint Value="0" />
<igChart:DataPoint Value="90" />
<igChart:Series.Fill>
<LinearGradientBrush Opacity=".5"><GradientStop Color="OrangeRed" /></LinearGradientBrush>
</igChart:Series.Fill>
</igChart:XamWebChart.Series>
</igChart:XamWebChart>
Now following questions....
Kindly suggest any possible solution. I will appreciate if you give me any code snippets for the solution. Thanks