In general chart, there is a marker option to highlight the points in bigger size. How we can use that option in infragistics Chart control.
Hello ,
With Infragisitcs WinChart you could add annotation to a specific data point or specific position
http://help.infragistics.com/doc/WinForms/2014.1/CLR4.0/?page=Chart_Create_Annotations.html
Please let me know if this is what you are looking for. If it is not - could you please post a an image of the desired look.
I am waiting for your feedback.
Thanks for your response . I have attached the screens please go through and do the needful.
Hello,
There is no screenshot attached to your response. Please attach it again, you could zip your picture and attach the zip.
I am waiting for your response.
Sorry.. Now find the attachment..
Thank you for the provided screenshot. For UltraWinChart you could choose from several predefined sizes
http://help.infragistics.com/Help/Doc/WinForms/2011.1/CLR2.0/HTML/Infragistics2.Win.UltraWinChart.v11.1~Infragistics.UltraChart.Shared.Styles.SymbolIconSize.html
so you could use this in UltraChart with code like:
Infragistics.UltraChart.Resources.Appearance.LineAppearance lineApp = new Infragistics.UltraChart.Resources.Appearance.LineAppearance(); lineApp.IconAppearance.IconSize = Infragistics.UltraChart.Shared.Styles.SymbolIconSize.Medium; lineApp.IconAppearance.Icon = Infragistics.UltraChart.Shared.Styles.SymbolIcon.Circle; ultraChart1.LineChart.LineAppearances.Add(lineApp);
Please let me know if you have any further questions.