如果值为>则向系列添加注释0

时间:2014-04-16 15:48:26

标签: google-visualization

如果值为>如何向系列C添加注释? 0?

Fiddle

使用什么配置......

data.addColumn({type: 'string', role: 'annotation'});

......是必要的吗?

1 个答案:

答案 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;
        }
    }]
}

参见工作示例:http://jsfiddle.net/asgallant/hRpDp/3/