From fd3806497df237950a05b3e11bbafc0bc008bf6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E4=BF=8A?= Date: Wed, 24 Jun 2015 18:32:31 +0800 Subject: [PATCH] Update config.py add a key show_data_labels --- pygal/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pygal/config.py b/pygal/config.py index 1405d9e..3dcf699 100644 --- a/pygal/config.py +++ b/pygal/config.py @@ -434,6 +434,8 @@ class Config(CommonConfig): "Don't prefix css") inverse_y_axis = Key(False, bool, "Misc", "Inverse Y axis direction") + show_data_labels = Key( + False, bool, "Label", "Set to false to hide data-labels") class SerieConfig(CommonConfig):