UNPKG

billboard.js

Version:

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

13 lines (11 loc) 423 B
/** * Copyright (c) 2017 ~ present NAVER Corp. * billboard.js project is licensed under the MIT license */ import shapeTreemap from "../../../ChartInternal/shape/treemap"; import {TYPE} from "../../const"; import optTreemap from "../../Options/shape/treemap"; import {extendAxis} from "./axis.helpers"; export let treemap = (): string => ( extendAxis([shapeTreemap], [optTreemap]), (treemap = () => TYPE.TREEMAP)() );