()
| 273 | return put_html(chart.render_notebook()) |
| 274 | |
| 275 | def pie_base(): |
| 276 | chart = Pie("Pie-基本示例", width="100%") |
| 277 | chart.set_options(labels=["小米", "三星", "华为", "苹果", "魅族", "VIVO", "OPPO"]) |
| 278 | chart.add_series([25, 87, 114, 131, 130, 94, 146]) |
| 279 | return put_html(chart.render_notebook()) |
| 280 | |
| 281 | def line_base(): |
| 282 | chart = Line("Line-基本示例", width="100%") |
no test coverage detected
searching dependent graphs…