本文整理匯總了Python中corehq.apps.reports.graph_models.MultiBarChart.data方法的典型用法代碼示例。如果您正苦於以下問題:Python MultiBarChart.data方法的具體用法?Python MultiBarChart.data怎麽用?Python MultiBarChart.data使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類corehq.apps.reports.graph_models.MultiBarChart
的用法示例。
在下文中一共展示了MultiBarChart.data方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: charts
# 需要導入模塊: from corehq.apps.reports.graph_models import MultiBarChart [as 別名]
# 或者: from corehq.apps.reports.graph_models.MultiBarChart import data [as 別名]
def charts(self):
if 'location_id' in self.request.GET: # hack: only get data if we're loading an actual report
chart = MultiBarChart(None, Axis(_('Products')), Axis(_('% of Facilities'), ',.1d'))
chart.data = self.get_data_for_graph()
return [chart]
示例2: charts
# 需要導入模塊: from corehq.apps.reports.graph_models import MultiBarChart [as 別名]
# 或者: from corehq.apps.reports.graph_models.MultiBarChart import data [as 別名]
def charts(self):
chart = MultiBarChart(None, Axis(''), Axis(''))
chart.height = 400
chart.marginBottom = 100
chart.data = self.get_data_for_graph()
return [chart]