You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieve one drill-down result, say drill down-by year and present it as a table and as a chart (no library choice preference, might be a Google Chart).
Required new objects:
HTMLTablePresenter
GooglePieChartPresenter
Suggested use:
// we have result heretable_presenter=HTMLTablePresenter(class="table",measures=["amount_sum","record_count"])chart_presenter=GooglePieChartPresenter(measure="amount_sum")table=table_presenter.present(result)chart=chart_presenter.present(result)
Note that there will be simpler presenter creation process in the future similar to Python version: create_presenter(type).
The text was updated successfully, but these errors were encountered:
Retrieve one drill-down result, say drill down-by year and present it as a table and as a chart (no library choice preference, might be a Google Chart).
Required new objects:
HTMLTablePresenter
GooglePieChartPresenter
Suggested use:
Note that there will be simpler presenter creation process in the future similar to Python version:
create_presenter(type)
.The text was updated successfully, but these errors were encountered: