Hi Support,
Question: Is zooming supported on Doughnut Series Chaart?
I have an SFChart where I added a Doughnut Series. The chart is rendered properly however, I am not able to make the zooming functions to work. Below are some of the snippets for the chart.
Creating the series..
SFDoughnutSeries _series = new SFDoughnutSeries();
_series.CircularCoefficient = 0.6f;
_series.DoughnutCoefficient = 0.6f;
_series.StartAngle = 180;
_series.EndAngle = 540;
_series.ColorModel.Palette = SFChartColorPalette.Custom;
_series.ColorModel.CustomColors = _normalPalette;
_series.EnableSmartLabels = true;
_series.DataMarkerPosition = SFChartCircularSeriesLabelPosition.OutsideExtended;
_series.ConnectorLineType = SFChartConnectorLineType.Bezier;
_series.DataMarker.ShowLabel = true;
_series.DataMarker.LabelContent = SFChartLabelContent.Percentage;
Adding Zoom Pan behaviour:
SFChartZoomPanBehavior _chartZoomPanBehavior = new SFChartZoomPanBehavior
{
EnableDoubleTap = false,
EnablePanning = true,
EnableZooming = true,
}; //Tried other combinations as well....
_chart.AddChartBehavior(_chartZoomPanBehavior);
I would like to know if this feature is enabled in this series type.
Thanks in advance!
Cheers!