UNPKG

billboard.js

Version:

Re-usable easy interface JavaScript chart library, based on D3 v4+

13 lines (11 loc) 392 B
/** * Copyright (c) 2017 ~ present NAVER Corp. * billboard.js project is licensed under the MIT license */ import {TYPE} from "../../const"; import optArc from "../../Options/shape/arc"; import optDonut from "../../Options/shape/donut"; import {extendArc} from "./arc.helpers"; export let donut = (): string => ( extendArc(undefined, [optArc, optDonut]), (donut = () => TYPE.DONUT)() );