isVisibleInLegend property

bool isVisibleInLegend

Implementation

bool get isVisibleInLegend => _isVisibleInLegend;
void isVisibleInLegend=(bool value)

Implementation

set isVisibleInLegend(bool value) {
  if (_isVisibleInLegend != value) {
    _isVisibleInLegend = value;
    if (series != null) {
      series!.markNeedsLegendUpdate();
    }
  }
}