From 2b9345ee138b3d499a30f30a6bed21822df8b619 Mon Sep 17 00:00:00 2001 From: Ivo-Maffei <33177749+Ivo-Maffei@users.noreply.github.com> Date: Wed, 29 Aug 2018 11:44:41 +0200 Subject: [PATCH] Adding method to remove all bars from a chart --- src/dlangui/widgets/charts.d | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/dlangui/widgets/charts.d b/src/dlangui/widgets/charts.d index ee20f03f..fdcb7542 100644 --- a/src/dlangui/widgets/charts.d +++ b/src/dlangui/widgets/charts.d @@ -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));