Thank you for providing us excellent chart library!
Is it possible that putting the legend on the top right corner of the plot area?
I tried like this... but, right alignment doesn't work.
Legend _getLegend() {
return Legend(
isVisible: true,
position: LegendPosition.top,
alignment: ChartAlignment.far, //ignored??
offset: Offset(10, 0),
overflowMode: LegendItemOverflowMode.scroll,
width: '200%',
toggleSeriesVisibility: false,
);
}