billboard.js
Version:
Re-usable easy interface JavaScript chart library, based on D3 v4+
24 lines (21 loc) • 816 B
JavaScript
/*!
* Copyright (c) 2017 ~ present NAVER Corp.
* billboard.js project is licensed under the MIT license
*
* billboard.js, JavaScript chart library
* https://naver.github.io/billboard.js/
*
* @version 4.0.1
*/
import shapePointCommon from '../../../ChartInternal/shape/core/point.js';
import shapePoint from '../../../ChartInternal/shape/point.js';
import { TYPE } from '../../const.js';
import optPoint from '../../Options/common/point.js';
import optScatter from '../../Options/shape/scatter.js';
import { extendAxis } from './axis.helpers.js';
/**
* Copyright (c) 2017 ~ present NAVER Corp.
* billboard.js project is licensed under the MIT license
*/
let scatter = () => (extendAxis([shapePointCommon, shapePoint], [optPoint, optScatter]), (scatter = () => TYPE.SCATTER)());
export { scatter };