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