1234567891011121314151617181920212223242526 |
- /**
- * 统计分析-拟合方程曲线
- */
- /* 英文 */
- export const FittingEquationChartEn = {
- x_edb:'X-value index',
- y_edb:'Y-value index',
- msg01:'Please select an indicator',
- msg02:'The number of indicators shall not be less than 2 groups',
- msg03:'The number of indicators on the X-axis and Y-axis is inconsistent',
- };
-
- /* 中文 */
- export const FittingEquationChartZh = {
- x_edb:'X值指标',
- y_edb:'Y轴指标',
- msg01:'请先选择指标',
- msg02:'指标数量不得少于2组',
- msg03:'X轴与Y轴指标数量不一致',
- };
-
- /**
- * $t('StatisticAnalysis.FittingEquationChart.XXX')
- */
|