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,
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.
Sorry.. Now find the attachment..
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.
Thanks for your response . I have attached the screens please go through and do the needful.