本文整理匯總了Python中pygal.Gauge.zero方法的典型用法代碼示例。如果您正苦於以下問題:Python Gauge.zero方法的具體用法?Python Gauge.zero怎麽用?Python Gauge.zero使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pygal.Gauge
的用法示例。
在下文中一共展示了Gauge.zero方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: test_bar_links
# 需要導入模塊: from pygal import Gauge [as 別名]
# 或者: from pygal.Gauge import zero [as 別名]
def test_bar_links():
bar = Gauge(style=styles['neon'])
bar.add('1234', [
{'value': 10,
'label': 'Ten',
'xlink': 'http://google.com?q=10'},
{'value': 20,
'label': 'Twenty',
'xlink': 'http://google.com?q=20'},
30,
{'value': 40,
'label': 'Forty',
'xlink': 'http://google.com?q=40'}
])
bar.add('4321', [40, {
'value': 30,
'label': 'Thirty',
'xlink': 'http://google.com?q=30'
}, 20, 10])
bar.x_labels = map(str, range(1, 5))
bar.logarithmic = True
bar.zero = 1
return bar.render_response()