Merge pull request #575 from Ivo-Maffei/patch-1

Adding method to remove all bars from a chart
This commit is contained in:
Vadim Lopatin 2018-09-10 16:31:09 +03:00 committed by GitHub
commit 328b1a4ee4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -119,6 +119,12 @@ class SimpleBarChart : Widget {
}
requestLayout();
}
void removeAllBars() {
_bars = [];
_maxY = 0;
requestLayout();
}
void updateBar(size_t index, double y, uint color, string barTitle) {
updateBar(index, y, color, UIString.fromId(barTitle));