折线对比图
parent
4ed94faa97
commit
335645c370
@ -0,0 +1,650 @@
|
|||||||
|
/*
|
||||||
|
* @Descripttion: 折线对比图 json
|
||||||
|
* @version:
|
||||||
|
* @Author: foming
|
||||||
|
* @Date: 2021-08-29 07:39:35
|
||||||
|
* @LastEditors: foming
|
||||||
|
* @LastEditTime: 2021-08-30
|
||||||
|
*/
|
||||||
|
export const widgetLineCompare = {
|
||||||
|
code: 'widgetLineCompareChart',
|
||||||
|
type: 'chart',
|
||||||
|
label: '折线对比图',
|
||||||
|
icon: 'iconzhexian',
|
||||||
|
options: {
|
||||||
|
// 配置
|
||||||
|
setup: [
|
||||||
|
{
|
||||||
|
type: 'el-input-text',
|
||||||
|
label: '图层名称',
|
||||||
|
name: 'layerName',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '折线对比图',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '背景颜色',
|
||||||
|
name: 'background',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
[
|
||||||
|
/*{
|
||||||
|
name: '柱体设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-slider',
|
||||||
|
label: '最大宽度',
|
||||||
|
name: 'maxWidth',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 15,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-slider',
|
||||||
|
label: '圆角',
|
||||||
|
name: 'radius',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 5,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},*/
|
||||||
|
{
|
||||||
|
name: '标题设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '标题',
|
||||||
|
name: 'isNoTitle',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-text',
|
||||||
|
label: '标题',
|
||||||
|
name: 'titleText',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体颜色',
|
||||||
|
name: 'textColor',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#FFD700'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '字体粗细',
|
||||||
|
name: 'textFontWeight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'normal', name: '正常'},
|
||||||
|
{code: 'bold', name: '粗体'},
|
||||||
|
{code: 'bolder', name: '特粗体'},
|
||||||
|
{code: 'lighter', name: '细体'}
|
||||||
|
],
|
||||||
|
value: 'normal'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '字体大小',
|
||||||
|
name: 'textFontSize',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 20
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '字体位置',
|
||||||
|
name: 'textAlign',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'center', name: '居中'},
|
||||||
|
{code: 'left', name: '左对齐'},
|
||||||
|
{code: 'right', name: '右对齐'},
|
||||||
|
],
|
||||||
|
value: 'center'
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '左X轴设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '显示',
|
||||||
|
name: 'hideXLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '数值间隔',
|
||||||
|
name: 'splitNumberLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '数值颜色',
|
||||||
|
name: 'XcolorLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '数值字号',
|
||||||
|
name: 'fontSizeXLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 14,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '刻度线',
|
||||||
|
name: 'tickLineLeft',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: 'X轴线',
|
||||||
|
name: 'xLineLeft',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '轴颜色',
|
||||||
|
name: 'lineColorXLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '竖分割线',
|
||||||
|
name: 'SplitLineLeft',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '分割线颜色',
|
||||||
|
name: 'SplitLineColorLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '分割线宽度',
|
||||||
|
name: 'SplitLinefontSizeLeft',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '边框线',
|
||||||
|
name: 'frameLineLeft',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '右X轴设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '显示',
|
||||||
|
name: 'hideXRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '数值间隔',
|
||||||
|
name: 'splitNumberRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: ''
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '数值颜色',
|
||||||
|
name: 'XcolorRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '数值字号',
|
||||||
|
name: 'fontSizeXRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 14,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '刻度线',
|
||||||
|
name: 'tickLineRight',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: 'X轴线',
|
||||||
|
name: 'xLineRight',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '轴颜色',
|
||||||
|
name: 'lineColorXRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '竖分割线',
|
||||||
|
name: 'SplitLineRight',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '分割线颜色',
|
||||||
|
name: 'SplitLineColorRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '分割线宽度',
|
||||||
|
name: 'SplitLinefontSizeRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '边框线',
|
||||||
|
name: 'frameLineRight',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Y轴设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '显示',
|
||||||
|
name: 'hideY',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '数值颜色',
|
||||||
|
name: 'colorY',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '数值字号',
|
||||||
|
name: 'fontSizeY',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 14,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '数值对齐',
|
||||||
|
name: 'textAlign',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'center', name: '居中'},
|
||||||
|
{code: 'left', name: '左对齐'},
|
||||||
|
{code: 'right', name: '右对齐'},
|
||||||
|
],
|
||||||
|
value: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '刻度线',
|
||||||
|
name: 'tickLineY',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: 'Y轴线',
|
||||||
|
name: 'lineY',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '轴颜色',
|
||||||
|
name: 'lineColorY',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '数值设定',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '显示',
|
||||||
|
name: 'isShow',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '字体大小',
|
||||||
|
name: 'fontSize',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 14
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体颜色',
|
||||||
|
name: 'subTextColor',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '字体粗细',
|
||||||
|
name: 'fontWeight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'normal', name: '正常'},
|
||||||
|
{code: 'bold', name: '粗体'},
|
||||||
|
{code: 'bolder', name: '特粗体'},
|
||||||
|
{code: 'lighter', name: '细体'}
|
||||||
|
],
|
||||||
|
value: 'normal'
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '提示语设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '字体大小',
|
||||||
|
name: 'tipsFontSize',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 16
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体颜色',
|
||||||
|
name: 'lineColor',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '坐标轴边距设置',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-slider',
|
||||||
|
label: '左右边距(像素)',
|
||||||
|
name: 'marginLeftRight',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-slider',
|
||||||
|
label: '顶边距(像素)',
|
||||||
|
name: 'marginTop',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 40,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-slider',
|
||||||
|
label: '底边距(像素)',
|
||||||
|
name: 'marginBottom',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 10,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '图例操作',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'el-switch',
|
||||||
|
label: '显示',
|
||||||
|
name: 'isShowLegend',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'vue-color',
|
||||||
|
label: '字体颜色',
|
||||||
|
name: 'lengedColor',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: '#fff',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '字体大小',
|
||||||
|
name: 'lengedFontSize',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 16,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '图例宽度',
|
||||||
|
name: 'lengedWidth',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
value: 15,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '横向位置',
|
||||||
|
name: 'lateralPosition',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'center', name: '居中'},
|
||||||
|
{code: 'left', name: '左对齐'},
|
||||||
|
{code: 'right', name: '右对齐'},
|
||||||
|
],
|
||||||
|
value: 'center'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '纵向位置',
|
||||||
|
name: 'longitudinalPosition',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'top', name: '顶部'},
|
||||||
|
{code: 'bottom', name: '底部'},
|
||||||
|
],
|
||||||
|
value: 'top'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-select',
|
||||||
|
label: '布局前置',
|
||||||
|
name: 'layoutFront',
|
||||||
|
required: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectOptions: [
|
||||||
|
{code: 'vertical', name: '竖排'},
|
||||||
|
{code: 'horizontal', name: '横排'},
|
||||||
|
],
|
||||||
|
value: 'horizontal'
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '自定义配色',
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
type: 'customColor',
|
||||||
|
label: '',
|
||||||
|
name: 'customColor',
|
||||||
|
required: false,
|
||||||
|
value: [{color: '#36c5e7'}, {color: '#e68b55'}],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
],
|
||||||
|
// 数据
|
||||||
|
data: [
|
||||||
|
{
|
||||||
|
type: 'el-radio-group',
|
||||||
|
label: '数据类型',
|
||||||
|
name: 'dataType',
|
||||||
|
require: false,
|
||||||
|
placeholder: '',
|
||||||
|
selectValue: true,
|
||||||
|
selectOptions: [
|
||||||
|
{
|
||||||
|
code: 'staticData',
|
||||||
|
name: '静态数据',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
code: 'dynamicData',
|
||||||
|
name: '动态数据',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
value: 'staticData',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '刷新时间(毫秒)',
|
||||||
|
name: 'refreshTime',
|
||||||
|
relactiveDom: 'dataType',
|
||||||
|
relactiveDomValue: 'dynamicData',
|
||||||
|
value: 5000
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-button',
|
||||||
|
label: '静态数据',
|
||||||
|
name: 'staticData',
|
||||||
|
required: false,
|
||||||
|
placeholder: 'px',
|
||||||
|
relactiveDom: 'dataType',
|
||||||
|
relactiveDomValue: 'staticData',
|
||||||
|
value: [
|
||||||
|
{"axis":"07-25","name":"success","data":"2"},
|
||||||
|
{"axis":"07-25","name":"fail","data":"10"},
|
||||||
|
{"axis":"07-26","name":"success","data":"5"},
|
||||||
|
{"axis":"07-26","name":"fail","data":"20"},
|
||||||
|
{"axis":"07-27","name":"success","data":"15"},
|
||||||
|
{"axis":"07-27","name":"fail","data":"30"},
|
||||||
|
{"axis":"07-28","name":"success","data":"10"},
|
||||||
|
{"axis":"07-28","name":"fail","data":"12"},
|
||||||
|
{"axis":"07-29","name":"success","data":"9"},
|
||||||
|
{"axis":"07-29","name":"fail","data":"16"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'dycustComponents',
|
||||||
|
label: '',
|
||||||
|
name: 'dynamicData',
|
||||||
|
required: false,
|
||||||
|
placeholder: 'px',
|
||||||
|
relactiveDom: 'dataType',
|
||||||
|
relactiveDomValue: 'dynamicData',
|
||||||
|
chartType: 'widget-stackchart',
|
||||||
|
dictKey: 'STACK_PROPERTIES',
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
// 坐标
|
||||||
|
position: [
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '左边距',
|
||||||
|
name: 'left',
|
||||||
|
required: false,
|
||||||
|
placeholder: 'px',
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '上边距',
|
||||||
|
name: 'top',
|
||||||
|
required: false,
|
||||||
|
placeholder: 'px',
|
||||||
|
value: 0,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '宽度',
|
||||||
|
name: 'width',
|
||||||
|
required: false,
|
||||||
|
placeholder: '该容器在1920px大屏中的宽度',
|
||||||
|
value: 400,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
type: 'el-input-number',
|
||||||
|
label: '高度',
|
||||||
|
name: 'height',
|
||||||
|
required: false,
|
||||||
|
placeholder: '该容器在1080px大屏中的高度',
|
||||||
|
value: 200,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,564 @@
|
|||||||
|
<template>
|
||||||
|
<div :style="styleObj">
|
||||||
|
<v-chart :options="options" autoresize/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
name: "WidgetBarCompareChart",
|
||||||
|
//参考 https://www.makeapie.com/editor.html?c=xOjLyozu2W
|
||||||
|
components: {},
|
||||||
|
props: {
|
||||||
|
value: Object,
|
||||||
|
ispreview: Boolean
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
options: {
|
||||||
|
title: {
|
||||||
|
//text: '柱状对比图',
|
||||||
|
x: 'center',
|
||||||
|
textStyle: {
|
||||||
|
color: '#ffffff',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
//边距
|
||||||
|
grid: [
|
||||||
|
{// 上
|
||||||
|
left: 30,
|
||||||
|
right: 20,
|
||||||
|
top: '60px',
|
||||||
|
containLabel: true,
|
||||||
|
bottom: '50%',
|
||||||
|
},
|
||||||
|
{ // 下
|
||||||
|
left: 30,
|
||||||
|
containLabel: true,
|
||||||
|
right: 20,
|
||||||
|
top: '51%',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
//图例
|
||||||
|
legend: {
|
||||||
|
textStyle: {
|
||||||
|
color: '#fff',
|
||||||
|
textAlign: 'center'
|
||||||
|
},
|
||||||
|
//itemGap:80,
|
||||||
|
//itemWidth: 0
|
||||||
|
},
|
||||||
|
xAxis: [
|
||||||
|
{//
|
||||||
|
gridIndex: 0,
|
||||||
|
type: 'category',
|
||||||
|
boundaryGap: false,
|
||||||
|
axisLine: { //分割线
|
||||||
|
onZero: false,
|
||||||
|
},
|
||||||
|
splitNumber: 2,
|
||||||
|
inverse: true,
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
//position: 'bottom',
|
||||||
|
axisLabel: { // x轴
|
||||||
|
show: true,
|
||||||
|
textStyle: {
|
||||||
|
color: '#ffffff',
|
||||||
|
fontSize: 12
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data: []
|
||||||
|
},
|
||||||
|
{//
|
||||||
|
gridIndex: 1,
|
||||||
|
type: 'category',
|
||||||
|
position: 'top',
|
||||||
|
boundaryGap: false,
|
||||||
|
axisLine: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
//position: 'bottom',
|
||||||
|
axisLabel: {
|
||||||
|
show: true,
|
||||||
|
textStyle: {
|
||||||
|
color: '#ffffff',
|
||||||
|
fontSize: 12,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
yAxis: [
|
||||||
|
{
|
||||||
|
gridIndex: 0,
|
||||||
|
scale: true,
|
||||||
|
splitLine: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
gridIndex: 1,
|
||||||
|
scale: true,
|
||||||
|
inverse: true,
|
||||||
|
splitLine: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: '',
|
||||||
|
type: 'line',
|
||||||
|
xAxisIndex: 0,
|
||||||
|
yAxisIndex: 0,
|
||||||
|
smooth: true,
|
||||||
|
barGap: 20,
|
||||||
|
barWidth: 15,
|
||||||
|
/*label: {
|
||||||
|
normal: {
|
||||||
|
show: true,
|
||||||
|
color: 'red',
|
||||||
|
position: 'insideLeft',
|
||||||
|
textStyle: {
|
||||||
|
color: '#ffffff',
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
color: '#36c5e7',
|
||||||
|
barBorderRadius: [8, 0, 0, 8],
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},*/
|
||||||
|
data: [],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: '',
|
||||||
|
type: 'line',
|
||||||
|
xAxisIndex: 1,
|
||||||
|
yAxisIndex: 1,
|
||||||
|
smooth: true,
|
||||||
|
barGap: 20,
|
||||||
|
barWidth: 15,
|
||||||
|
/*label: {
|
||||||
|
normal: {
|
||||||
|
show: true,
|
||||||
|
color: 'red',
|
||||||
|
position: 'insideRight',
|
||||||
|
textStyle: {
|
||||||
|
color: '#ffffff',
|
||||||
|
}
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
normal: {
|
||||||
|
color: '#e68b55',
|
||||||
|
barBorderRadius: [0, 8, 8, 0],
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},*/
|
||||||
|
data: [],
|
||||||
|
},
|
||||||
|
]
|
||||||
|
},
|
||||||
|
optionsStyle: {},
|
||||||
|
optionsData: {},
|
||||||
|
optionsSetup: {},
|
||||||
|
flagInter: null
|
||||||
|
};
|
||||||
|
},
|
||||||
|
computed: {
|
||||||
|
styleObj() {
|
||||||
|
return {
|
||||||
|
position: this.ispreview ? "absolute" : "static",
|
||||||
|
width: this.optionsStyle.width + "px",
|
||||||
|
height: this.optionsStyle.height + "px",
|
||||||
|
left: this.optionsStyle.left + "px",
|
||||||
|
top: this.optionsStyle.top + "px",
|
||||||
|
background: this.optionsSetup.background
|
||||||
|
};
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
value: {
|
||||||
|
handler(val) {
|
||||||
|
this.optionsStyle = val.position;
|
||||||
|
this.optionsData = val.data;
|
||||||
|
this.optionsSetup = val.setup;
|
||||||
|
this.optionsSetup = val.setup;
|
||||||
|
this.editorOptions();
|
||||||
|
},
|
||||||
|
deep: true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.optionsStyle = this.value.position;
|
||||||
|
this.optionsData = this.value.data;
|
||||||
|
this.optionsCollapse = this.value.setup;
|
||||||
|
this.optionsSetup = this.value.setup;
|
||||||
|
this.editorOptions();
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
// 修改图标options属性
|
||||||
|
editorOptions() {
|
||||||
|
/*this.setOptionsTitle();
|
||||||
|
this.setOptionsXLeft();
|
||||||
|
this.setOptionsXRight();
|
||||||
|
this.setOptionsY();
|
||||||
|
this.setOptionsTop();
|
||||||
|
this.setOptionsTooltip();
|
||||||
|
this.setOptionsGrid();
|
||||||
|
this.setOptionsLegend();
|
||||||
|
this.setOptionsColor();*/
|
||||||
|
this.setOptionsData();
|
||||||
|
},
|
||||||
|
/* // 标题修改
|
||||||
|
setOptionsTitle() {
|
||||||
|
const optionsCollapse = this.optionsSetup;
|
||||||
|
const title = {};
|
||||||
|
title.text = optionsCollapse.titleText;
|
||||||
|
title.show = optionsCollapse.isNoTitle;
|
||||||
|
title.left = optionsCollapse.textAlign;
|
||||||
|
title.textStyle = {
|
||||||
|
color: optionsCollapse.textColor,
|
||||||
|
fontSize: optionsCollapse.textFontSize,
|
||||||
|
fontWeight: optionsCollapse.textFontWeight
|
||||||
|
};
|
||||||
|
this.options.title = title;
|
||||||
|
},
|
||||||
|
// 左X轴设置
|
||||||
|
setOptionsXLeft() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const xAxisLeft = {
|
||||||
|
splitNumber: optionsSetup.splitNumberLeft,
|
||||||
|
type: 'value',
|
||||||
|
inverse: true,
|
||||||
|
axisLine: {//X轴线
|
||||||
|
show: optionsSetup.xLineLeft,
|
||||||
|
lineStyle: {
|
||||||
|
color: optionsSetup.lineColorXLeft,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: optionsSetup.tickLineLeft,
|
||||||
|
},
|
||||||
|
position: 'bottom',
|
||||||
|
axisLabel: { // x轴
|
||||||
|
show: optionsSetup.hideXLeft,
|
||||||
|
textStyle: {
|
||||||
|
color: optionsSetup.XcolorLeft,
|
||||||
|
fontSize: optionsSetup.fontSizeXLeft
|
||||||
|
}
|
||||||
|
},
|
||||||
|
splitLine: { // 分割线
|
||||||
|
show: optionsSetup.SplitLineLeft,
|
||||||
|
lineStyle: {
|
||||||
|
color: optionsSetup.SplitLineColorLeft,
|
||||||
|
width: optionsSetup.SplitLinefontSizeLeft,
|
||||||
|
type: 'solid'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.options.xAxis[0] = xAxisLeft;
|
||||||
|
},
|
||||||
|
// 右X轴设置
|
||||||
|
setOptionsXRight() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const xAxisRight = {
|
||||||
|
gridIndex: 2,
|
||||||
|
splitNumber: optionsSetup.splitNumberRight,
|
||||||
|
type: 'value',
|
||||||
|
axisLine: {//X轴线
|
||||||
|
show: optionsSetup.xLineRight,
|
||||||
|
lineStyle: {
|
||||||
|
color: optionsSetup.lineColorXRight,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
axisTick: {
|
||||||
|
show: optionsSetup.tickLineRight,
|
||||||
|
},
|
||||||
|
position: 'bottom',
|
||||||
|
axisLabel: { // x轴
|
||||||
|
show: optionsSetup.hideXRight,
|
||||||
|
textStyle: {
|
||||||
|
color: optionsSetup.XcolorRight,
|
||||||
|
fontSize: optionsSetup.fontSizeXRight
|
||||||
|
}
|
||||||
|
},
|
||||||
|
splitLine: { // 分割线
|
||||||
|
show: optionsSetup.SplitLineRight,
|
||||||
|
lineStyle: {
|
||||||
|
color: optionsSetup.SplitLineColorRight,
|
||||||
|
width: optionsSetup.SplitLinefontSizeRight,
|
||||||
|
type: 'solid'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.options.xAxis[2] = xAxisRight;
|
||||||
|
},
|
||||||
|
// Y轴设置
|
||||||
|
setOptionsY() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const axisLine = {
|
||||||
|
show: optionsSetup.lineY,
|
||||||
|
lineStyle: {
|
||||||
|
color: optionsSetup.lineColorY
|
||||||
|
}
|
||||||
|
};
|
||||||
|
const axisTick = {
|
||||||
|
show: optionsSetup.tickLineY
|
||||||
|
};
|
||||||
|
const axisLabel = {
|
||||||
|
show: optionsSetup.hideY,
|
||||||
|
textStyle: {
|
||||||
|
align: optionsSetup.textAlign,
|
||||||
|
color: optionsSetup.colorY,
|
||||||
|
fontSize: optionsSetup.fontSizeY,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
this.options.yAxis[1]['axisLine'] = axisLine;
|
||||||
|
this.options.yAxis[1]['axisTick'] = axisTick;
|
||||||
|
this.options.yAxis[1]['axisLabel'] = axisLabel;
|
||||||
|
},
|
||||||
|
// 数值设定、柱体设置
|
||||||
|
setOptionsTop() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const series = this.options.series;
|
||||||
|
for (const key in series) {
|
||||||
|
if (series[key].type == "bar") {
|
||||||
|
series[0].label = {
|
||||||
|
normal: {
|
||||||
|
show: optionsSetup.isShow,
|
||||||
|
position: 'insideLeft',
|
||||||
|
textStyle: {
|
||||||
|
fontSize: optionsSetup.fontSize,
|
||||||
|
color: optionsSetup.subTextColor,
|
||||||
|
fontWeight: optionsSetup.fontWeight
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series[1].label = {
|
||||||
|
normal: {
|
||||||
|
show: optionsSetup.isShow,
|
||||||
|
color: 'red',
|
||||||
|
position: 'insideRight',
|
||||||
|
textStyle: {
|
||||||
|
fontSize: optionsSetup.fontSize,
|
||||||
|
color: optionsSetup.subTextColor,
|
||||||
|
fontWeight: optionsSetup.fontWeight
|
||||||
|
}
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
series[key].barWidth = optionsSetup.maxWidth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.options.series = series;
|
||||||
|
},
|
||||||
|
// tooltip 提示语设置
|
||||||
|
setOptionsTooltip() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const tooltip = {
|
||||||
|
trigger: "item",
|
||||||
|
show: true,
|
||||||
|
textStyle: {
|
||||||
|
color: optionsSetup.lineColor,
|
||||||
|
fontSize: optionsSetup.fontSize
|
||||||
|
}
|
||||||
|
};
|
||||||
|
this.options.tooltip = tooltip;
|
||||||
|
},
|
||||||
|
// 边距设置
|
||||||
|
getOptionsBottom(){
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
let bottom = optionsSetup.marginBottom;
|
||||||
|
if (optionsSetup.hideXLeft) {
|
||||||
|
bottom = optionsSetup.marginBottom + 15
|
||||||
|
}else if (optionsSetup.hideXRight){
|
||||||
|
bottom = optionsSetup.marginBottom + 15
|
||||||
|
}
|
||||||
|
return bottom
|
||||||
|
},
|
||||||
|
setOptionsGrid() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const grid = [
|
||||||
|
{//左
|
||||||
|
show: optionsSetup.frameLineLeft,
|
||||||
|
left: optionsSetup.marginLeftRight,
|
||||||
|
top: optionsSetup.marginTop,
|
||||||
|
bottom: optionsSetup.marginBottom,
|
||||||
|
containLabel: true,
|
||||||
|
width: '40%'
|
||||||
|
},
|
||||||
|
{//中间字体位置
|
||||||
|
show: false,
|
||||||
|
left: "51%",
|
||||||
|
top: optionsSetup.marginTop,
|
||||||
|
bottom: this.getOptionsBottom(),
|
||||||
|
width: '0%'
|
||||||
|
},
|
||||||
|
{//右
|
||||||
|
show: optionsSetup.frameLineRight,
|
||||||
|
right: optionsSetup.marginLeftRight,
|
||||||
|
top: optionsSetup.marginTop,
|
||||||
|
bottom: optionsSetup.marginBottom,
|
||||||
|
containLabel: true,
|
||||||
|
width: '40%'
|
||||||
|
},
|
||||||
|
]
|
||||||
|
this.options.grid = grid;
|
||||||
|
},
|
||||||
|
// 图例操作
|
||||||
|
setOptionsLegend() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const legend = this.options.legend;
|
||||||
|
legend.show = optionsSetup.isShowLegend;
|
||||||
|
legend.left = optionsSetup.lateralPosition;
|
||||||
|
legend.top = optionsSetup.longitudinalPosition == "top" ? 0 : "auto";
|
||||||
|
legend.bottom =
|
||||||
|
optionsSetup.longitudinalPosition == "bottom" ? 0 : "auto";
|
||||||
|
legend.orient = optionsSetup.layoutFront;
|
||||||
|
legend.textStyle = {
|
||||||
|
color: optionsSetup.lengedColor,
|
||||||
|
fontSize: optionsSetup.lengedFontSize
|
||||||
|
};
|
||||||
|
legend.itemWidth = optionsSetup.lengedWidth;
|
||||||
|
},
|
||||||
|
// 颜色修改、圆角修改
|
||||||
|
setOptionsColor() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const customColor = optionsSetup.customColor;
|
||||||
|
if (!customColor) return;
|
||||||
|
const itemStyleLeft = {
|
||||||
|
normal: {
|
||||||
|
color: customColor[0].color,
|
||||||
|
barBorderRadius: [optionsSetup.radius, 0, 0, optionsSetup.radius]
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
const itemStyleRight = {
|
||||||
|
normal: {
|
||||||
|
color: customColor[1].color,
|
||||||
|
barBorderRadius: [0, optionsSetup.radius, optionsSetup.radius, 0]
|
||||||
|
},
|
||||||
|
emphasis: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
this.options.series[0].itemStyle = itemStyleLeft;
|
||||||
|
this.options.series[1].itemStyle = itemStyleRight;
|
||||||
|
},*/
|
||||||
|
// 数据解析
|
||||||
|
setOptionsData() {
|
||||||
|
const optionsSetup = this.optionsSetup;
|
||||||
|
const optionsData = this.optionsData; // 数据类型 静态 or 动态
|
||||||
|
optionsData.dataType == "staticData"
|
||||||
|
? this.staticDataFn(optionsData.staticData, optionsSetup)
|
||||||
|
: this.dynamicDataFn(
|
||||||
|
optionsData.dynamicData,
|
||||||
|
optionsData.refreshTime,
|
||||||
|
optionsSetup
|
||||||
|
);
|
||||||
|
},
|
||||||
|
//去重
|
||||||
|
setUnique(arr) {
|
||||||
|
let newArr = [];
|
||||||
|
arr.forEach(item => {
|
||||||
|
return newArr.includes(item) ? '' : newArr.push(item);
|
||||||
|
});
|
||||||
|
return newArr;
|
||||||
|
},
|
||||||
|
//静态数据
|
||||||
|
staticDataFn(val) {
|
||||||
|
//数据
|
||||||
|
let xAxisList = [];
|
||||||
|
let yAxisList = [];
|
||||||
|
let arrayList = [];
|
||||||
|
for (const i in val) {
|
||||||
|
xAxisList[i] = val[i].axis
|
||||||
|
yAxisList[i] = val[i].name
|
||||||
|
}
|
||||||
|
xAxisList = this.setUnique(xAxisList)
|
||||||
|
yAxisList = this.setUnique(yAxisList)
|
||||||
|
for (const i in yAxisList) {
|
||||||
|
const data = new Array(yAxisList.length).fill(0)
|
||||||
|
for (const j in xAxisList) {
|
||||||
|
for (const k in val) {
|
||||||
|
if (val[k].name == yAxisList[i]) {
|
||||||
|
if (val[k].axis == xAxisList[j]) {
|
||||||
|
data[j] = val[k].data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
arrayList.push({
|
||||||
|
name: yAxisList[i],
|
||||||
|
data: data
|
||||||
|
})
|
||||||
|
}
|
||||||
|
console.log(arrayList)
|
||||||
|
this.options.series[0]['name'] = arrayList[0].name
|
||||||
|
this.options.series[0]['data'] = arrayList[0].data
|
||||||
|
this.options.series[1]['name'] = arrayList[1].name
|
||||||
|
this.options.series[1]['data'] = arrayList[1].data
|
||||||
|
this.options.xAxis[0]['data'] = xAxisList
|
||||||
|
},
|
||||||
|
// 动态数据
|
||||||
|
dynamicDataFn(val, refreshTime, optionsSetup) {
|
||||||
|
if (!val) return;
|
||||||
|
if (this.ispreview) {
|
||||||
|
this.getEchartData(val, optionsSetup);
|
||||||
|
this.flagInter = setInterval(() => {
|
||||||
|
this.getEchartData(val, optionsSetup);
|
||||||
|
}, refreshTime);
|
||||||
|
} else {
|
||||||
|
this.getEchartData(val, optionsSetup);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
getEchartData(val, optionsSetup) {
|
||||||
|
const data = this.queryEchartsData(val);
|
||||||
|
data.then(res => {
|
||||||
|
this.renderingFn(optionsSetup, res);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
renderingFn(optionsSetup, val) {
|
||||||
|
this.options.yAxis[1]['data'] = val.xAxis
|
||||||
|
if (val.series[0].type == "bar"){
|
||||||
|
this.options.series[0]['name'] = val.series[0].name
|
||||||
|
this.options.series[0]['data'] = val.series[0].data
|
||||||
|
this.options.series[1]['name'] = val.series[1].name
|
||||||
|
this.options.series[1]['data'] = val.series[1].data
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.echarts {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
Loading…
Reference in New Issue