本文整理汇总了TypeScript中d3-shape.curveBundle.beta方法的典型用法代码示例。如果您正苦于以下问题:TypeScript curveBundle.beta方法的具体用法?TypeScript curveBundle.beta怎么用?TypeScript curveBundle.beta使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类d3-shape.curveBundle
的用法示例。
在下文中一共展示了curveBundle.beta方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: line
defaultLine = defaultLine.defined(true);
line = line.defined((d, t, data) => {
console.log('Number of Points: ', data.length);
console.log('Y-Coordinate of first point: ', data[0].y); // data type is Array<LineDatum>
return !d.missing; // d type is LineDatum
});
lineDefAccessorFn = line.defined();
// curve(...) ------------------------------------------------------------------------
defaultLine = defaultLine.curve(d3Shape.curveLinear);
line = line.curve(d3Shape.curveBundle.beta(0.5));
let currentCurveFactory: d3Shape.CurveFactory | d3Shape.CurveFactoryLineOnly = line.curve();
// use Line generator ===============================================================
defaultLine([[10, 10], [20, 10], [20, 20]]);
const lineData: LineDatum[] = [
{ x: 10, y: 10, missing: false },
{ x: 20, y: 10, missing: false },
{ x: 20, y: 20, missing: false }
];
const linePathStringMaybe: string | null = line(lineData);
示例2: line
defaultLine = defaultLine.defined(true);
line = line.defined(function (d, t, data) {
console.log('Number of Points: ', data.length);
console.log('Y-Coordinate of first point: ', data[0].y); // data type is Array<LineDatum>
return !d.missing; // d type is LineDatum
});
lineDefAccessorFn = line.defined();
// curve(...) ------------------------------------------------------------------------
defaultLine = defaultLine.curve(d3Shape.curveLinear);
line = line.curve(d3Shape.curveBundle.beta(0.5));
let currentCurveFactory: d3Shape.CurveFactory | d3Shape.CurveFactoryLineOnly = line.curve();
// use Line generator ===============================================================
defaultLine([[10, 10], [20, 10], [20, 20]]);
let lineData: Array<LineDatum> = [
{ x: 10, y: 10, missing: false },
{ x: 20, y: 10, missing: false },
{ x: 20, y: 20, missing: false }
];
let linePathString: string = line(lineData);