Hi Ken,
#1) Is there a way to snap one of the nearest columns to the center point? For instance, when the users scroll the chart, one of the columns must be in the center as selection.
We are glade to let you know that we have achieved your requirement in Android, but we found some difficulty to achieve the same behavior in iOS. We will update you the possibility in iOS within two business days (June 11, 2015). We have used custom ChartZoomPanBehavior to snap nearest data point index. Please find the sample from the following location,
Sample :
http://www.syncfusion.com/downloads/support/forum/119339/ze/Scroll-2097276824
#2) Is it possible to put a label on top of a line series stating its YValue as a value indicator?
Yes, it is possible to put the data marker label on top of the series using following code snippet,
C#
series.DataMarker = new ChartDataMarker();
series.DataMarker.LabelStyle.LabelPosition = DataMarkerLabelPosition.Center;
series.DataMarker.ConnectorLineStyle.ConnectorHeight = 10;
series.DataMarker.ConnectorLineStyle.StrokeColor = Color.Transparent;
|
Note : By default label will arrange smartly at top or bottom position based on the line intersection angle.
Please let us know if you require further assistance on this. Thanks,Yuvaraj