placeLabelsNearAxisLine property
Consider to place the axis label respect to near axis line.
Defaults to true
.
Widget build(BuildContext context) {
return Container(
child: SfCartesianChart(
primaryXAxis: NumericAxis(placeLabelsNearAxisLine: false, crossesAt:10),
)
);
}
Implementation
final bool placeLabelsNearAxisLine;