import { getBase } from '../../utils/chartOption/base'; const BaseChart = (config: any) => { const { yTitle, categories, yLabelsFormat, series } = config; const base: any = getBase(); base.series = series; base.yAxis.title.text = yTitle; base.xAxis.categories = categories; base.yAxis.labels.format = yLabelsFormat || '{value}'; return base; }; export { BaseChart };