MPFlutterChart icon indicating copy to clipboard operation
MPFlutterChart copied to clipboard

Don't limit label count anymore!

Open VuHongKy opened this issue 5 years ago • 2 comments

Please don't limit the label count of xAxis like that anymore:

void setLabelCount1(int count) {
    if (count > 25) count = 25;
    if (count < 2) count = 2;
    _labelCount = count;
    _forceLabels = false;
  }

I has 31 labels count relatively with 31 days. And I formated it so just show each 6 labels. It's looks fine. So please don't limit it to max = 25 anymore. That's kind of annoying! Let user free with his choice.

VuHongKy avatar Aug 03 '20 04:08 VuHongKy

+1 I have sample problem.

jackyhieu1211-hn avatar Aug 03 '20 04:08 jackyhieu1211-hn

@SunPointed Please consider this problem. Thank you!

VuHongKy avatar Aug 13 '20 04:08 VuHongKy