UNPKG

1.39 kBPlain TextView Raw
1/**
2 * Copyright (c) 2017 ~ present NAVER Corp.
3 * billboard.js project is licensed under the MIT license
4 */
5/**
6 * Modules exports for Axis based chart
7 */
8// Chart
9import apiAxis from "../../Chart/api/axis";
10import apiCategory from "../../Chart/api/category";
11import apiXGrid from "../../Chart/api/grid.x";
12import apiYGrid from "../../Chart/api/grid.y";
13import apiGroup from "../../Chart/api/group";
14import apiRegion from "../../Chart/api/regions";
15import apiX from "../../Chart/api/x";
16import apiFlow from "../../Chart/api/flow";
17
18// ChartInternal
19import axis from "../../ChartInternal/Axis/Axis";
20import eventrect from "../../ChartInternal/interactions/eventrect";
21import flow from "../../ChartInternal/interactions/flow";
22
23import clip from "../../ChartInternal/internals/clip";
24import grid from "../../ChartInternal/internals/grid";
25import region from "../../ChartInternal/internals/region";
26import sizeAxis from "../../ChartInternal/internals/size.axis";
27
28// Axis based options
29import optDataAxis from "../Options/data/axis";
30import optAxis from "../Options/axis/axis";
31import optGrid from "../Options/common/grid";
32
33export const api = [
34 apiAxis,
35 apiCategory,
36 apiXGrid,
37 apiYGrid,
38 apiFlow,
39 apiGroup,
40 apiRegion,
41 apiX
42];
43
44export const internal = [
45 axis,
46 clip,
47 eventrect,
48 flow,
49 grid,
50 region,
51 sizeAxis,
52];
53
54export const options = [
55 optDataAxis,
56 optAxis,
57 optGrid,
58];