INNER CODE UNIT · TypeScript
createGraphPath
margelo/react-native-graph · src/CreateGraphPath.ts:251
export function createGraphPath(props: GraphPathConfig): SkPath {
return createGraphPathBase({ ...props, shouldFillGradient: false });
}
export function createGraphPathWithGradient(
props: GraphPathConfig
): GraphPathWithGradient {
return createGraphPathBase({
...props,
shouldFillGradient: true,
});
}