如何在iVisual或PowerBI开发中使用d3 jetpack

时间:2016-01-26 13:44:47

标签: d3.js powerbi

我发现使用d3 jetpack非常有用。

示例,使用d3-jetpack中的nice ƒ辅助函数代替使用getter函数,并稍微压缩代码:

var columns = [
    { head: 'Movie title', cl: 'title', html: ƒ('title') },
    { head: 'Year', cl: 'center', html: ƒ('year') },
    { head: 'Length', cl: 'center', html: ƒ('length') },
    { head: 'Budget', cl: 'num', html: ƒ('budget') },
    { head: 'Rating', cl: 'num', html: ƒ('rating') }
];

我这样使用它---

{ head: 'ten', cl: 'num', d3: f('Name', d3.format('.1f')) }

enter image description here

现在,当我在PowerBI视觉效果中的typescript类中使用相同的代码时,它会返回一个错误说明---

  

找不到名字ƒ

那么如何在iVisual或打字稿中使用d3 jetpack!

0 个答案:

没有答案