axisBorderType property
Border type of the axis label.
Defaults to AxisBorderType.rectangle
.
Also refer AxisBorderType.
Widget build(BuildContext context) {
return Container(
child: GraphTool(
primaryXAxis: NumericAxis(
axisBorderType: AxisBorderType.withoutTopAndBottom,
)
)
);
}
Implementation
final AxisBorderType axisBorderType;