如何使用ngx-charts返回html标签

时间:2018-01-25 14:43:54

标签: angular charts angular5 ngx-charts

我使用ngx-chart创建一个像thins一样的饼图:

模板

  public patients: Array<any> = [
    {
      name: 'recorrente',
      value : 67
    }, {
      name: 'novos',
      value: 33
    }
  ];

成分<​​/ P>

使用此类数据发送数组

# disable all notifications
user.define_singleton_method(:send_devise_notification) { |*_| true }

# disable the one you want
user.define_singleton_method(:send_devise_notification) do |*args|
  return true if args[0] == :reset_password_instructions
  super
end

但我需要发送带有html / css标签的数据来个性化标签,我尝试使用返回功能但不起作用。

1 个答案:

答案 0 :(得分:1)

将标签模板放入标签内:

                  <ng-template #tooltipTemplate let-model="model">
                      <h6 style="color: #fff">{{model.series}} - {{model.name}}</h6>
                      <h6 style="color: #fff">It's around {{model.value | number:'1.1-2'}}%</h6>
                  </ng-template>