|
@@ -294,7 +294,8 @@ export default {
|
|
|
Source:this.chartInfo.Source,//图表来源,和MyChartType一起确定是什么图
|
|
|
Instructions: this.chartInfo.Instructions,
|
|
|
SourcesFrom: this.chartInfo.SourcesFrom,
|
|
|
- ChartThemeStyle: this.chartInfo.ChartThemeStyle
|
|
|
+ ChartThemeStyle: this.chartInfo.ChartThemeStyle,
|
|
|
+ ChartOtherName:this.chartInfo.ChartOtherName||'别名,我是别名',//图表别名
|
|
|
}
|
|
|
this.optionMap[id] = { ...defaultOpts, ...this.options,...otherOpts };
|
|
|
}else{
|
|
@@ -529,7 +530,7 @@ export default {
|
|
|
/* if(!$(`#${refName}`)[0]) return */
|
|
|
/*
|
|
|
Source:1
|
|
|
- MyChartType: 2 季节性图,7 柱形图, 10 截面散点图,
|
|
|
+ MyChartType: 2 季节性图,7 柱形图, 10 截面散点图,11 雷达图
|
|
|
Source:2
|
|
|
MyChartType: 8 商品价格曲线图
|
|
|
Source:5
|
|
@@ -537,9 +538,16 @@ export default {
|
|
|
Source:6 拟合方程曲线
|
|
|
Source:7 统计特征
|
|
|
以上图表需要显示标题
|
|
|
+
|
|
|
+ Source:1
|
|
|
+ MyChartType:1 曲线图 5 散点图 6组合图
|
|
|
+ 以上图表需要显示别名
|
|
|
+
|
|
|
+ 后端控制->通过新字段来判断是否显示标题/别名
|
|
|
*/
|
|
|
const {Source,MyChartType,ChartThemeStyle} = options
|
|
|
const isShowTitle = isShowPPTTitle(Source,MyChartType)
|
|
|
+ const isShowOtherTitle = Source===1&&[1,5,6].includes(MyChartType)
|
|
|
|
|
|
/* 主题样式*/
|
|
|
const chartTheme = ChartThemeStyle ? JSON.parse(ChartThemeStyle) : null;
|
|
@@ -578,16 +586,16 @@ export default {
|
|
|
//一行可容纳的中文字体数
|
|
|
const fontSize = chartTheme?chartTheme.titleOptions.style.fontSize:16
|
|
|
let count = parseInt($(`#${refName}`)[0].offsetWidth / fontSize)*1.75
|
|
|
- let {total,newStr} = getStrSize(options.MyChartTitle,count)
|
|
|
+ let {total,newStr} = getStrSize(isShowTitle?options.MyChartTitle:isShowOtherTitle?options.ChartOtherName:'',count)
|
|
|
const isPublish = this.$route.path==='/pptpublish'||this.$route.path==='/pptenpublish'
|
|
|
- if(isShowTitle){
|
|
|
+ if(isShowTitle||isShowOtherTitle){
|
|
|
titleHTML = `<div style="
|
|
|
text-align:${chartTheme&&chartTheme.titleOptions.align};
|
|
|
font-size:${chartTheme&&chartTheme.titleOptions.style.fontSize}px;
|
|
|
color:${chartTheme&&chartTheme.titleOptions.style.color};
|
|
|
min-height:18px;word-break: break-all;
|
|
|
">
|
|
|
- ${options.MyChartTitle}
|
|
|
+ ${isShowTitle?options.MyChartTitle:isShowOtherTitle?options.ChartOtherName:''}
|
|
|
</div>`
|
|
|
}
|
|
|
let SpecialOption = {
|