15 lines
594 B
TypeScript
Raw Normal View History

2022-09-15 01:28:57 +08:00
import { ConfigType, PackagesCategoryEnum, ChartFrameEnum } from '@/packages/index.d'
2022-09-14 19:09:59 +08:00
import { ChatCategoryEnum, ChatCategoryEnumName } from '../../index.d'
export const ScatterLogarithmicRegressionConfig: ConfigType = {
2022-09-15 12:07:01 +08:00
key: 'ScatterLogarithmicRegression',
chartKey: 'VScatterLogarithmicRegression',
conKey: 'VCScatterLogarithmicRegression',
title: '对数回归散点图',
2022-09-14 19:09:59 +08:00
category: ChatCategoryEnum.SCATTER,
categoryName: ChatCategoryEnumName.SCATTER,
package: PackagesCategoryEnum.CHARTS,
2022-09-15 01:28:57 +08:00
chartFrame: ChartFrameEnum.ECHARTS,
image: 'scatter-logarithmic-regression.png'
2022-09-14 19:09:59 +08:00
}