Closed
Description
Automatic panning does not work if we set :
zoomPanBehavior: ZoomPanBehavior(
enablePanning: true,
enablePinching: false,
),
Full Chart :
/// Used for column
SfCartesianChart(
plotAreaBorderWidth: 0,
primaryXAxis: CategoryAxis(
majorGridLines: MajorGridLines(width: 0),
),
primaryYAxis: NumericAxis(
maximum: 100,
minimum: 0,
interval: 25,
axisLine: AxisLine(width: 0),
majorTickLines: MajorTickLines(size: 0)),
series: getColumnSeries(),
isVisible: true,
overflowMode: LegendItemOverflowMode.wrap),
tooltipBehavior: TooltipBehavior(enable: true),
zoomPanBehavior: ZoomPanBehavior(
enablePanning: true,
enablePinching: false,
),
),
The only way to get panning working is to :
-
zoomPanBehavior: ZoomPanBehavior(
enablePanning: true,
enablePinching: true,
), -
zoomPanBehavior: ZoomPanBehavior(
enablePanning: true,
enablePinching: false, enableDoubleTapZooming: true
),
I just want to view a graph and be able to pan the graph without having to doubletap - is this another bug in syncfusion or is this a limitation ?
Metadata
Metadata
Assignees
Labels
No labels