如何在GUI中添加饼图?

时间:2019-01-01 13:04:05

标签: python

我需要在GUI中添加一个饼图,并且我的代码不是OOP格式的,并且我看到的大多数教程都基于OOP格式的代码。有人可以让我知道他们是否知道我可以解决此问题的方法。

1 个答案:

答案 0 :(得分:0)

“ OOP”格式无关紧要。只需使用pygal:

http://pygal.org/en/stable/documentation/types/pie.html

import { Pipe, PipeTransform } from '@angular/core';

@Pipe({
  name: 'replace'
})
export class ReplacePipe implements PipeTransform {
  transform(value: any, args?: any): any {

    return value.replace('h', 'gi', '<b>$&</b>');

  }
}

以下是输出方法

http://pygal.org/en/stable/documentation/output.html