Adding method to remove all bars from a chart

This commit is contained in:
Ivo-Maffei 2018-08-29 11:44:41 +02:00 committed by GitHub
parent 18286dc659
commit 2b9345ee13
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));