MPFlutterChart
MPFlutterChart copied to clipboard
Don't limit label count anymore!
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.
+1 I have sample problem.
@SunPointed Please consider this problem. Thank you!