本文整理汇总了TypeScript中@bokehjs/models/formatters/func_tick_formatter.FuncTickFormatter类的典型用法代码示例。如果您正苦于以下问题:TypeScript FuncTickFormatter类的具体用法?TypeScript FuncTickFormatter怎么用?TypeScript FuncTickFormatter使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了FuncTickFormatter类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的TypeScript代码示例。
示例1: it
it("should support imports using require", () => {
const formatter = new FuncTickFormatter({
code: "let {max} = require('../../core/util/array'); return max([1, 2, 3])",
use_strict: true,
})
const labels = formatter.doFormat([0, 0, 0], {loc: 0})
expect(labels).to.be.deep.equal([3,3,3])
})
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:8,代码来源:func_tick_formatter.ts
示例2: describe
describe("FuncTickFormatter._make_func method", () => {
const formatter = new FuncTickFormatter({code: "return 10", use_strict: true})
it("should return a Function", () => {
expect(formatter._make_func()).to.be.an.instanceof(Function)
})
it("should have code property as function body", () => {
const func = new Function("tick", "index", "ticks", "require", "exports", "'use strict';\nreturn 10")
expect(formatter._make_func().toString()).to.be.equal(func.toString())
})
it("should have values as function args", () => {
const rng = new Range1d()
formatter.args = {foo: rng.ref()}
const func = new Function("tick", "index", "ticks", "foo", "require", "exports", "'use strict';\nreturn 10")
expect(formatter._make_func().toString()).to.be.equal(func.toString())
})
})
开发者ID:digitalsatori,项目名称:Bokeh,代码行数:19,代码来源:func_tick_formatter.ts
注:本文中的@bokehjs/models/formatters/func_tick_formatter.FuncTickFormatter类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论