柱线图XY配置项调整

qianming 2 years ago
parent 5074f67169
commit a46860af15

@ -448,6 +448,14 @@ export const widgetBarLineStack = {
placeholder: '', placeholder: '',
value: 14, value: 14,
}, },
{
type: 'el-slider',
label: '数值角度',
name: 'textAngleYLeft',
required: false,
placeholder: '',
value: 0
},
{ {
type: 'el-input-number', type: 'el-input-number',
label: '均分', label: '均分',
@ -464,6 +472,22 @@ export const widgetBarLineStack = {
placeholder: '', placeholder: '',
value: '#fff', value: '#fff',
}, },
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYLeft',
require: false,
placeholder: '',
value: false,
},
{
type: 'vue-color',
label: '分割线颜色',
name: 'splitLineColorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{ {
type: 'el-switch', type: 'el-switch',
label: '右显示', label: '右显示',
@ -511,6 +535,14 @@ export const widgetBarLineStack = {
placeholder: '', placeholder: '',
value: 14, value: 14,
}, },
{
type: 'el-slider',
label: '数值角度',
name: 'textAngleYRight',
required: false,
placeholder: '',
value: 0
},
{ {
type: 'el-input-number', type: 'el-input-number',
label: '均分', label: '均分',
@ -527,6 +559,22 @@ export const widgetBarLineStack = {
placeholder: '', placeholder: '',
value: '#fff', value: '#fff',
}, },
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYRight',
require: false,
placeholder: '',
value: false,
},
{
type: 'vue-color',
label: '分割线颜色',
name: 'splitLineColorYRight',
required: false,
placeholder: '',
value: '#fff',
},
], ],
}, },
{ {

@ -32,6 +32,35 @@ export const widgetBarlinechart = {
value: '' value: ''
}, },
[ [
{
name: '柱体设置',
list: [
{
type: 'el-slider',
label: '最大宽度',
name: 'maxWidth',
required: false,
placeholder: '',
value: 10,
},
{
type: 'el-slider',
label: '圆角',
name: 'radius',
require: false,
placeholder: '',
value: 5,
},
{
type: 'el-slider',
label: '最小高度',
name: 'minHeight',
require: false,
placeholder: '',
value: 0,
},
],
},
{ {
name: '折线设置', name: '折线设置',
list: [ list: [
@ -85,35 +114,6 @@ export const widgetBarlinechart = {
}, },
], ],
}, },
{
name: '柱体设置',
list: [
{
type: 'el-slider',
label: '最大宽度',
name: 'maxWidth',
required: false,
placeholder: '',
value: 10,
},
{
type: 'el-slider',
label: '圆角',
name: 'radius',
require: false,
placeholder: '',
value: 5,
},
{
type: 'el-slider',
label: '最小高度',
name: 'minHeight',
require: false,
placeholder: '',
value: 0,
},
],
},
{ {
name: '标题设置', name: '标题设置',
list: [ list: [
@ -337,67 +337,67 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '轴别名',
name: 'xName', name: 'nameX',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: ''
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '名颜色',
name: 'nameColorX', name: 'nameColorX',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: '#fff'
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '坐标字号', label: '别名字号',
name: 'nameFontSizeX', name: 'nameFontSizeX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14
},
{
type: 'vue-color',
label: '数值颜色',
name: 'Xcolor',
required: false,
placeholder: '',
value: '#fff',
}, },
{ {
type: 'el-input-number', type: 'el-switch',
label: '数值字号', label: '轴反转',
name: 'fontSizeX', name: 'reversalX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: false
}, },
{ {
type: 'el-slider', type: 'el-slider',
label: '数值角度', label: '文字角度',
name: 'textAngle', name: 'textAngleX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 0 value: 0
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '数值间隔', label: '文字间隔',
name: 'textInterval', name: 'textInterval',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: ''
}, },
{ {
type: 'el-switch', type: 'vue-color',
label: '轴反转', label: '文字颜色',
name: 'reversalX', name: 'colorX',
required: false, required: false,
placeholder: '', placeholder: '',
value: false value: '#fff',
},
{
type: 'el-input-number',
label: '文字字号',
name: 'fontSizeX',
required: false,
placeholder: '',
value: 14,
}, },
{ {
type: 'vue-color', type: 'vue-color',
@ -438,7 +438,7 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '坐标名',
name: 'textNameYLeft', name: 'textNameYLeft',
require: false, require: false,
placeholder: '', placeholder: '',
@ -446,7 +446,7 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '坐标名颜色',
name: 'nameColorYLeft', name: 'nameColorYLeft',
required: false, required: false,
placeholder: '', placeholder: '',
@ -454,20 +454,68 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '左坐标字号', label: '坐标名字号',
name: 'namefontSizeYLeft', name: 'nameFontSizeYLeft',
required: false,
placeholder: '',
value: 14,
},
{
type: 'vue-color',
label: '数值颜色',
name: 'colorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{
type: 'el-input-number',
label: '数值字号',
name: 'fontSizeYLeft',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14,
}, },
{
type: 'el-slider',
label: '数值角度',
name: 'textAngleYLeft',
required: false,
placeholder: '',
value: 0
},
{ {
type: 'el-input-number', type: 'el-input-number',
label: '左均分', label: '均分',
name: 'splitNumberLeft', name: 'splitNumberLeft',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: ''
}, },
{
type: 'vue-color',
label: '轴颜色',
name: 'lineColorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYLeft',
require: false,
placeholder: '',
value: false,
},
{
type: 'vue-color',
label: '分割线颜色',
name: 'splitLineColorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{ {
type: 'el-switch', type: 'el-switch',
label: '右显示', label: '右显示',
@ -478,7 +526,7 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '坐标名',
name: 'textNameYRight', name: 'textNameYRight',
require: false, require: false,
placeholder: '', placeholder: '',
@ -486,7 +534,7 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '坐标名颜色',
name: 'nameColorYRight', name: 'nameColorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
@ -494,48 +542,63 @@ export const widgetBarlinechart = {
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '坐标字号', label: '坐标字号',
name: 'namefontSizeYRight', name: 'nameFontSizeYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14,
}, {
type: 'vue-color',
label: '数值颜色',
name: 'colorYRight',
required: false,
placeholder: '',
value: '#fff',
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '右均分', label: '数值字号',
name: 'splitNumberRight', name: 'fontSizeYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: 14,
}, },
{ {
type: 'vue-color', type: 'el-slider',
label: '数值颜色', label: '数值角度',
name: 'colorY', name: 'textAngleYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: 0
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '数值字号', label: '均分',
name: 'fontSizeY', name: 'splitNumberRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: ''
}, },
{ {
type: 'el-switch', type: 'vue-color',
label: '轴反转', label: '轴颜色',
name: 'reversalY', name: 'lineColorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: false value: '#fff',
},
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYRight',
require: false,
placeholder: '',
value: false,
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '轴颜色', label: '分割线颜色',
name: 'lineColorY', name: 'splitLineColorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: '#fff',

@ -32,6 +32,27 @@ export const widgetMoreBarLine = {
value: '' value: ''
}, },
[ [
{
name: '柱体设置',
list: [
{
type: 'el-slider',
label: '最大宽度',
name: 'maxWidth',
required: false,
placeholder: '',
value: 10,
},
{
type: 'el-slider',
label: '圆角',
name: 'radius',
require: false,
placeholder: '',
value: 5,
},
],
},
{ {
name: '折线设置', name: '折线设置',
list: [ list: [
@ -85,27 +106,6 @@ export const widgetMoreBarLine = {
}, },
], ],
}, },
{
name: '柱体设置',
list: [
{
type: 'el-slider',
label: '最大宽度',
name: 'maxWidth',
required: false,
placeholder: '',
value: 10,
},
{
type: 'el-slider',
label: '圆角',
name: 'radius',
require: false,
placeholder: '',
value: 5,
},
],
},
{ {
name: '标题设置', name: '标题设置',
list: [ list: [
@ -329,67 +329,67 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '轴别名',
name: 'xName', name: 'nameX',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: ''
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '名颜色',
name: 'nameColorX', name: 'nameColorX',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: '#fff'
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '坐标字号', label: '别名字号',
name: 'nameFontSizeX', name: 'nameFontSizeX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14
},
{
type: 'vue-color',
label: '数值颜色',
name: 'Xcolor',
required: false,
placeholder: '',
value: '#fff',
}, },
{ {
type: 'el-input-number', type: 'el-switch',
label: '数值字号', label: '轴反转',
name: 'fontSizeX', name: 'reversalX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: false
}, },
{ {
type: 'el-slider', type: 'el-slider',
label: '数值角度', label: '文字角度',
name: 'textAngle', name: 'textAngleX',
required: false, required: false,
placeholder: '', placeholder: '',
value: 0 value: 0
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '数值间隔', label: '文字间隔',
name: 'textInterval', name: 'textInterval',
required: false, required: false,
placeholder: '', placeholder: '',
value: '' value: ''
}, },
{ {
type: 'el-switch', type: 'vue-color',
label: '轴反转', label: '文字颜色',
name: 'reversalX', name: 'colorX',
required: false, required: false,
placeholder: '', placeholder: '',
value: false value: '#fff',
},
{
type: 'el-input-number',
label: '文字字号',
name: 'fontSizeX',
required: false,
placeholder: '',
value: 14,
}, },
{ {
type: 'vue-color', type: 'vue-color',
@ -430,7 +430,7 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '坐标名',
name: 'textNameYLeft', name: 'textNameYLeft',
require: false, require: false,
placeholder: '', placeholder: '',
@ -438,7 +438,7 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '坐标名颜色',
name: 'nameColorYLeft', name: 'nameColorYLeft',
required: false, required: false,
placeholder: '', placeholder: '',
@ -446,12 +446,68 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '坐标字号', label: '坐标字号',
name: 'nameFontSizeYLeft', name: 'nameFontSizeYLeft',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14,
}, },
{
type: 'vue-color',
label: '数值颜色',
name: 'colorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{
type: 'el-input-number',
label: '数值字号',
name: 'fontSizeYLeft',
required: false,
placeholder: '',
value: 14,
},
{
type: 'el-slider',
label: '数值角度',
name: 'textAngleYLeft',
required: false,
placeholder: '',
value: 0
},
{
type: 'el-input-number',
label: '均分',
name: 'splitNumberLeft',
required: false,
placeholder: '',
value: ''
},
{
type: 'vue-color',
label: '轴颜色',
name: 'lineColorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYLeft',
require: false,
placeholder: '',
value: false,
},
{
type: 'vue-color',
label: '分割线颜色',
name: 'splitLineColorYLeft',
required: false,
placeholder: '',
value: '#fff',
},
{ {
type: 'el-switch', type: 'el-switch',
label: '右显示', label: '右显示',
@ -462,7 +518,7 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'el-input-text', type: 'el-input-text',
label: '坐标名', label: '坐标名',
name: 'textNameYRight', name: 'textNameYRight',
require: false, require: false,
placeholder: '', placeholder: '',
@ -470,7 +526,7 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'vue-color', type: 'vue-color',
label: '坐标名颜色', label: '坐标名颜色',
name: 'nameColorYRight', name: 'nameColorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
@ -478,16 +534,15 @@ export const widgetMoreBarLine = {
}, },
{ {
type: 'el-input-number', type: 'el-input-number',
label: '坐标字号', label: '坐标字号',
name: 'nameFontSizeYRight', name: 'nameFontSizeYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14,
}, }, {
{
type: 'vue-color', type: 'vue-color',
label: '数值颜色', label: '数值颜色',
name: 'colorY', name: 'colorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: '#fff',
@ -495,15 +550,47 @@ export const widgetMoreBarLine = {
{ {
type: 'el-input-number', type: 'el-input-number',
label: '数值字号', label: '数值字号',
name: 'fontSizeY', name: 'fontSizeYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: 14, value: 14,
}, },
{
type: 'el-slider',
label: '数值角度',
name: 'textAngleYRight',
required: false,
placeholder: '',
value: 0
},
{
type: 'el-input-number',
label: '均分',
name: 'splitNumberRight',
required: false,
placeholder: '',
value: ''
},
{ {
type: 'vue-color', type: 'vue-color',
label: '轴颜色', label: '轴颜色',
name: 'lineColorY', name: 'lineColorYRight',
required: false,
placeholder: '',
value: '#fff',
},
{
type: 'el-switch',
label: '分割线显示',
name: 'isShowSplitLineYRight',
require: false,
placeholder: '',
value: false,
},
{
type: 'vue-color',
label: '分割线颜色',
name: 'splitLineColorYRight',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#fff', value: '#fff',

@ -44,6 +44,7 @@ const screenConfig = {
name: 'description', name: 'description',
required: false, required: false,
placeholder: '', placeholder: '',
value: ''
}, },
{ {
type: 'vue-color', type: 'vue-color',
@ -51,7 +52,7 @@ const screenConfig = {
name: 'backgroundColor', name: 'backgroundColor',
required: false, required: false,
placeholder: '', placeholder: '',
value: '#000', value: 'rgba(45, 86, 126, 1)',
}, },
{ {
type: 'custom-upload', type: 'custom-upload',
@ -59,7 +60,7 @@ const screenConfig = {
name: 'backgroundImage', name: 'backgroundImage',
required: false, required: false,
placeholder: '', placeholder: '',
value: 'https://ajreport.beliefteam.cn/file/download/bf566e48-ccad-40e1-8ee9-228427e5466b', value: '',
}, },
], ],
data: [], data: [],

@ -219,6 +219,8 @@ export default {
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYLeft,
textStyle: { textStyle: {
// //
color: optionsSetup.colorYLeft, color: optionsSetup.colorYLeft,
@ -228,11 +230,14 @@ export default {
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorYLeft color: optionsSetup.lineColorYLeft,
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYLeft,
lineStyle: {
color: optionsSetup.splitLineColorYLeft,
}
} }
}, },
{ {
@ -250,6 +255,8 @@ export default {
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYRight,
textStyle: { textStyle: {
// //
color: optionsSetup.colorYRight, color: optionsSetup.colorYRight,
@ -259,11 +266,14 @@ export default {
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorYRight color: optionsSetup.lineColorYRight,
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYRight,
lineStyle: {
color: optionsSetup.splitLineColorYRight,
}
} }
} }
]; ];

@ -225,6 +225,8 @@ export default {
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYLeft,
textStyle: { textStyle: {
// //
color: optionsSetup.colorYLeft, color: optionsSetup.colorYLeft,
@ -234,11 +236,14 @@ export default {
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorYLeft color: optionsSetup.lineColorYLeft,
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYLeft,
lineStyle: {
color: optionsSetup.splitLineColorYLeft,
}
} }
}, },
{ {
@ -256,6 +261,8 @@ export default {
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYRight,
textStyle: { textStyle: {
// //
color: optionsSetup.colorYRight, color: optionsSetup.colorYRight,
@ -265,11 +272,14 @@ export default {
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorYRight color: optionsSetup.lineColorYRight,
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYRight,
lineStyle: {
color: optionsSetup.splitLineColorYRight,
}
} }
} }
]; ];

@ -242,21 +242,26 @@ export default {
setOptionsX() { setOptionsX() {
const optionsSetup = this.optionsSetup; const optionsSetup = this.optionsSetup;
const xAxis = { const xAxis = {
type: 'category', type: "category",
show: optionsSetup.hideX, // //
name: optionsSetup.xName, // show: optionsSetup.hideX,
//
name: optionsSetup.nameX,
nameTextStyle: { nameTextStyle: {
color: optionsSetup.nameColorX, color: optionsSetup.nameColorX,
fontSize: optionsSetup.nameFontSizeX fontSize: optionsSetup.nameFontSizeX
}, },
nameRotate: optionsSetup.textAngle, // //
inverse: optionsSetup.reversalX, // inverse: optionsSetup.reversalX,
axisLabel: { axisLabel: {
show: true, show: true,
interval: optionsSetup.textInterval, // //
rotate: optionsSetup.textAngle, // interval: optionsSetup.textInterval,
//
rotate: optionsSetup.textAngleX,
textStyle: { textStyle: {
color: optionsSetup.Xcolor, // x //
color: optionsSetup.colorX,
fontSize: optionsSetup.fontSizeX fontSize: optionsSetup.fontSizeX
} }
}, },
@ -280,53 +285,75 @@ export default {
const optionsSetup = this.optionsSetup; const optionsSetup = this.optionsSetup;
const yAxis = [ const yAxis = [
{ {
type: 'value', type: "value",
show: optionsSetup.isShowYLeft, // //
name: optionsSetup.textNameYLeft, // splitNumber: optionsSetup.splitNumberLeft,
nameTextStyle: { // //
show: optionsSetup.isShowYLeft,
//
name: optionsSetup.textNameYLeft,
//
nameTextStyle: {
color: optionsSetup.nameColorYLeft, color: optionsSetup.nameColorYLeft,
fontSize: optionsSetup.nameFontSizeYLeft fontSize: optionsSetup.nameFontSizeYLeft
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYLeft,
textStyle: { textStyle: {
color: optionsSetup.colorY, // y //
fontSize: optionsSetup.fontSizeY color: optionsSetup.colorYLeft,
fontSize: optionsSetup.fontSizeYLeft
} }
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorY color: optionsSetup.lineColorYLeft
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYLeft,
lineStyle: {
color: optionsSetup.splitLineColorYLeft,
}
} }
}, },
{ {
type: 'value', type: "value",
show: optionsSetup.isShowYRight, // //
name: optionsSetup.textNameYRight, // splitNumber: optionsSetup.splitNumberRight,
nameTextStyle: { // //
show: optionsSetup.isShowYRight,
//
name: optionsSetup.textNameYRight,
//
nameTextStyle: {
color: optionsSetup.nameColorYRight, color: optionsSetup.nameColorYRight,
fontSize: optionsSetup.nameFontSizeYRight fontSize: optionsSetup.nameFontSizeYRight
}, },
axisLabel: { axisLabel: {
show: true, show: true,
//
rotate: optionsSetup.textAngleYRight,
textStyle: { textStyle: {
color: optionsSetup.colorY, // y //
fontSize: optionsSetup.fontSizeY color: optionsSetup.colorYRight,
fontSize: optionsSetup.fontSizeYRight
} }
}, },
axisLine: { axisLine: {
show: true, show: true,
lineStyle: { lineStyle: {
color: optionsSetup.lineColorY color: optionsSetup.lineColorYRight
} }
}, },
splitLine: { splitLine: {
show: false, show: optionsSetup.isShowSplitLineYRight,
lineStyle: {
color: optionsSetup.splitLineColorYRight,
}
} }
} }
]; ];

Loading…
Cancel
Save