showOverlaySeries property
bool
get
showOverlaySeries
Whether or not the legend show overlay series.
By default this is false, the overlay series are not shown on the legend.
if showOverlaySeries is set to null, it is changed to the default of false.
Implementation
bool get showOverlaySeries => legendEntryGenerator.showOverlaySeries;
set
showOverlaySeries
(bool? showOverlaySeries)
Implementation
set showOverlaySeries(bool? showOverlaySeries) {
legendEntryGenerator.showOverlaySeries = showOverlaySeries ?? false;
}