我使用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标签的数据来个性化标签,我尝试使用返回功能但不起作用。
答案 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>