showAxis property

bool get showAxis

Whether to draw the axis line (bar charts).

Implementation

bool get showAxis => _showAxis;
set showAxis (bool value)

Implementation

set showAxis(bool value) {
  if (_showAxis == value) return;
  _showAxis = value;
  notifyListeners();
}