如果值为>如何向系列C添加注释? 0?
使用什么配置......
data.addColumn({type: 'string', role: 'annotation'});
......是必要的吗?
答案 0 :(得分:1)
您可以通过图表的view
参数添加计算的注释列:
view: {
columns: [0, 1, 2, 3, {
type: 'string',
role: 'annotation',
calc: function (dt, row) {
return (dt.getValue(row, 3) > 0) ? 'Yes' : null;
}
}]
}