ohayolibs
Version:
Ohayo is a set of essential modules for ohayojp.
43 lines (37 loc) • 1.29 kB
text/typescript
import { NgModule } from '@angular/core';
// #region all modules
import { G2BarModule } from '@ohayo/chart/bar';
import { G2CardModule } from '@ohayo/chart/card';
import { G2CustomModule } from '@ohayo/chart/custom';
import { G2GaugeModule } from '@ohayo/chart/gauge';
import { G2MiniAreaModule } from '@ohayo/chart/mini-area';
import { G2MiniBarModule } from '@ohayo/chart/mini-bar';
import { G2MiniProgressModule } from '@ohayo/chart/mini-progress';
import { NumberInfoModule } from '@ohayo/chart/number-info';
import { G2PieModule } from '@ohayo/chart/pie';
import { G2RadarModule } from '@ohayo/chart/radar';
import { G2SingleBarModule } from '@ohayo/chart/single-bar';
import { G2TagCloudModule } from '@ohayo/chart/tag-cloud';
import { G2TimelineModule } from '@ohayo/chart/timeline';
import { TrendModule } from '@ohayo/chart/trend';
import { G2WaterWaveModule } from '@ohayo/chart/water-wave';
const MODULES = [
G2BarModule,
G2CardModule,
G2CustomModule,
G2GaugeModule,
G2MiniAreaModule,
G2MiniBarModule,
G2MiniProgressModule,
G2PieModule,
G2RadarModule,
G2TagCloudModule,
G2TimelineModule,
G2WaterWaveModule,
G2SingleBarModule,
NumberInfoModule,
TrendModule,
];
// #endregion
({ exports: MODULES })
export class OhayoChartModule { }