billboard.js
Version:
Re-usable easy interface JavaScript chart library, based on D3 v4+
19 lines (17 loc) • 645 B
text/typescript
/**
* Copyright (c) 2017 ~ present NAVER Corp.
* billboard.js project is licensed under the MIT license
*/
import shapeBubble from "../../../ChartInternal/shape/bubble";
import shapePointCommon from "../../../ChartInternal/shape/core/point";
import shapePoint from "../../../ChartInternal/shape/point";
import {TYPE} from "../../const";
import optPoint from "../../Options/common/point";
import optBubble from "../../Options/shape/bubble";
import {extendAxis} from "./axis.helpers";
export let bubble = (): string => (
extendAxis(
[shapePointCommon, shapePoint, shapeBubble],
[optBubble, optPoint]
), (bubble = () => TYPE.BUBBLE)()
);