Welcome to the Flutter feedback portal. We’re happy you’re here! If you have feedback on how to improve the Flutter, we’d love to hear it!>
Thanks for joining our community and helping improve Syncfusion products!
We have a barchart, but the last bar only shows half, need to pan to see it in full. iPhone SE simulator.
return SfCartesianChart(
series: _getDataSeries(),
plotAreaBorderWidth: 0,
tooltipBehavior: TooltipBehavior(enable: true),
primaryXAxis: DateTimeAxis(
intervalType: _getTimeIntervalType(),
dateFormat: DataBucket.getChartDateFormat(selectedBucket),
visibleMinimum: hasTooMuchData
? dataPoints[dataPoints.length - 31].timestamp
: null, //uncomment to test scroll
visibleMaximum: hasTooMuchData
? dataPoints[dataPoints.length - 1].timestamp
: null, //uncomment to test scroll
labelStyle: ChartTextStyle(color: appTheme.textColorOnLightBgDisabled),
majorGridLines: MajorGridLines(width: 0),
majorTickLines: MajorTickLines(width: 0),
minorGridLines: MinorGridLines(width: 0),
labelIntersectAction: AxisLabelIntersectAction.hide,
edgeLabelPlacement: EdgeLabelPlacement.shift,
axisLine: AxisLine(width: 0),
),
primaryYAxis: NumericAxis(isVisible: false),
zoomPanBehavior: ZoomPanBehavior(enablePanning: true),
onTooltipRender: (TooltipArgs args) => _customizeTooltip(args),
//annotations: _getMinHighAnnotations(), //remove after we are sure annotations won't be used
);