title property

String? get title

Gets chart axis title.

Implementation

String? get title {
  if (_titleArea == null) {
    return null;
  }
  return _titleArea!.text;
}
set title (String? value)

Sets chart axis title.

Implementation

set title(String? value) {
  titleArea.text = value;
}