UNPKG

ohayolibs

Version:

Ohayo is a set of essential modules for ohayojp.

23 lines (19 loc) 489 B
--- order: 0 title: zh-CN: 迷你型 en-US: Mini --- 通过简化 `pie` 属性的设置,可以快速的实现极简的饼状图,可配合 `chart-card` 组合展现更多业务场景。 ```ts import { Component } from '@angular/core'; @Component({ selector: 'app-demo', template: ` <div style="width: 200px; display: inline-block"> <g2-pie percent="28" subTitle="中式快餐" total="28%" height="130"></g2-pie> </div> `, }) export class DemoComponent {} ```