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