123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678 |
- <template>
- <div :style="styleObj">
- <v-chart ref="myVChart" :option="options" autoresize/>
- </div>
- </template>
- <script>
- import {targetWidgetLinkageLogic} from "@/views/bigscreenDesigner/designer/linkageLogic";
- export default {
- name: "WidgetBarlinechart",
- components: {},
- props: {
- value: Object,
- ispreview: Boolean,
- },
- data() {
- return {
- options: {
- color: [],
- grid: {},
- title: {
- text: "",
- textStyle: {
- color: "#fff",
- },
- },
- tooltip: {
- trigger: "item",
- formatter: "{a} <br/>{b} : {c}%",
- },
- legend: {
- textStyle: {
- color: "#fff",
- },
- },
- xAxis: [
- {
- type: "category",
- data: [],
- axisLabel: {
- show: false,
- textStyle: {
- color: "#fff",
- },
- },
- },
- ],
- yAxis: [
- {
- type: "value",
- name: "",
- min: 0,
- max: 250,
- interval: 50,
- axisLabel: {
- show: true,
- textStyle: {
- color: "#fff",
- },
- },
- },
- {
- type: "value",
- name: "",
- min: 0,
- max: 25,
- interval: 5,
- axisLabel: {
- show: true,
- textStyle: {
- color: "#fff",
- },
- },
- },
- ],
- series: [
- {
- name: "",
- type: "bar",
- yAxisIndex: 0,
- data: [],
- itemStyle: {
- barBorderRadius: null,
- },
- },
- {
- name: "",
- type: "line",
- yAxisIndex: 1,
- data: [],
- itemStyle: {},
- },
- ],
- },
- optionsStyle: {}, // 样式
- optionsData: {}, // 数据
- optionsCollapse: {}, // 图标属性
- 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,
- };
- },
- allComponentLinkage() {
- return this.$store.state.designer.allComponentLinkage;
- },
- },
- watch: {
- value: {
- handler(val) {
- this.optionsStyle = val.position;
- this.optionsData = val.data;
- this.optionsCollapse = val.collapse;
- this.optionsSetup = val.setup;
- this.editorOptions();
- },
- deep: true,
- },
- },
- created() {
- this.optionsStyle = this.value.position;
- this.optionsData = this.value.data;
- this.optionsCollapse = this.value.collapse;
- this.optionsSetup = this.value.setup;
- this.editorOptions();
- targetWidgetLinkageLogic(this); // 联动-目标组件逻辑
- },
- methods: {
- // 修改图标options属性
- editorOptions() {
- this.setOptionsTitle();
- this.setOptionsX();
- this.setOptionsY();
- this.setOptionsLine();
- this.setOptionsBar();
- this.setOptionsTooltip();
- this.setOptionsData();
- this.setOptionsMargin();
- this.setOptionsLegend();
- this.setOptionsColor();
- },
- // 标题修改
- setOptionsTitle() {
- const optionsSetup = this.optionsSetup;
- const title = {
- text: optionsSetup.text,
- show: optionsSetup.isShowTitle,
- left: optionsSetup.titleLeft,
- top: optionsSetup.titleTop + "%",
- itemGap: optionsSetup.titleItemGap,
- textStyle: {
- color: optionsSetup.textColor,
- fontSize: optionsSetup.textFontSize,
- fontWeight: optionsSetup.textFontWeight,
- fontStyle: optionsSetup.textFontStyle,
- fontFamily: optionsSetup.textFontFamily,
- },
- subtext: optionsSetup.subtext,
- subtextStyle: {
- color: optionsSetup.subtextColor,
- fontWeight: optionsSetup.subtextFontWeight,
- fontSize: optionsSetup.subtextFontSize,
- fontStyle: optionsSetup.subtextFontStyle,
- fontFamily: optionsSetup.subtextFontFamily
- },
- };
- this.options.title = title;
- },
- // X轴设置
- setOptionsX() {
- const optionsSetup = this.optionsSetup;
- const xAxis = {
- type: "category",
- // 坐标轴是否显示
- show: optionsSetup.isShowX,
- max: optionsSetup.maxX !== "" ? optionsSetup.maxX : null,
- min: optionsSetup.minX !== "" ? optionsSetup.minX : null,
- position: optionsSetup.positionX,
- offset: optionsSetup.offsetX,
- // 坐标轴名称
- name: optionsSetup.nameX,
- nameLocation: optionsSetup.nameLocationX,
- nameTextStyle: {
- color: optionsSetup.nameColorX,
- fontSize: optionsSetup.nameFontSizeX,
- fontWeight: optionsSetup.nameFontWeightX,
- fontStyle: optionsSetup.nameFontStyleX,
- fontFamily: optionsSetup.nameFontFamilyX,
- },
- // 轴反转
- inverse: optionsSetup.reversalX,
- axisLabel: {
- show: optionsSetup.isShowAxisLabelX,
- interval: optionsSetup.textIntervalX,
- // 文字角度
- rotate: optionsSetup.textAngleX,
- textStyle: {
- // 坐标文字颜色
- color: optionsSetup.textColorX,
- fontSize: optionsSetup.textFontSizeX,
- fontWeight: optionsSetup.textFontWeightX,
- fontStyle: optionsSetup.textFontStyleX,
- fontFamily: optionsSetup.textFontFamilyX,
- },
- },
- // X轴线
- axisLine: {
- show: optionsSetup.isShowAxisLineX,
- lineStyle: {
- color: optionsSetup.lineColorX,
- width: optionsSetup.lineWidthX,
- },
- },
- // X轴刻度线
- axisTick: {
- show: optionsSetup.isShowAxisLineX,
- lineStyle: {
- color: optionsSetup.lineColorX,
- width: optionsSetup.lineWidthX,
- },
- },
- // X轴分割线
- splitLine: {
- show: optionsSetup.isShowSplitLineX,
- lineStyle: {
- color: optionsSetup.splitLineColorX,
- width: optionsSetup.splitLineWidthX,
- },
- },
- };
- this.options.xAxis = xAxis;
- },
- // Y轴设置
- setOptionsY() {
- const optionsSetup = this.optionsSetup;
- const yAxis = [
- {
- max: optionsSetup.maxYLeft !== "" ? optionsSetup.maxYLeft : null,
- min: optionsSetup.minYLeft !== "" ? optionsSetup.minYLeft : null,
- type: "value",
- scale: optionsSetup.scaleYLeft,
- // 均分
- splitNumber: optionsSetup.splitNumberYLeft,
- // 坐标轴是否显示
- show: optionsSetup.isShowYLeft,
- position: optionsSetup.positionYLeft,
- offset: optionsSetup.offsetYLeft,
- // 坐标轴名称
- name: optionsSetup.textNameYLeft,
- nameLocation: optionsSetup.nameLocationYLeft,
- // 别名
- nameTextStyle: {
- color: optionsSetup.nameColorYLeft,
- fontSize: optionsSetup.nameFontSizeYLeft,
- fontWeight: optionsSetup.nameFontWeightYLeft,
- fontStyle: optionsSetup.nameFontStyleYLeft,
- fontFamily: optionsSetup.nameFontFamilyYLeft,
- },
- axisLabel: {
- show: optionsSetup.isShowAxisLabelYLeft,
- // 文字角度
- rotate: optionsSetup.textAngleYLeft,
- textStyle: {
- // 坐标文字颜色
- color: optionsSetup.textColorYLeft,
- fontSize: optionsSetup.textFontSizeYLeft,
- fontWeight: optionsSetup.textFontWeightYLeft,
- fontStyle: optionsSetup.textFontStyleYLeft,
- fontFamily: optionsSetup.textFontFamilyYLeft,
- },
- },
- axisLine: {
- show: optionsSetup.isShowAxisLineYLeft,
- lineStyle: {
- width: optionsSetup.lineWidthYLeft,
- color: optionsSetup.lineColorYLeft,
- },
- },
- axisTick: {
- // 刻度
- show: optionsSetup.isShowAxisLineYLeft,
- lineStyle: {
- width: optionsSetup.lineWidthYLeft,
- color: optionsSetup.lineColorYLeft,
- },
- },
- splitLine: {
- show: optionsSetup.isShowSplitLineYLeft,
- lineStyle: {
- color: optionsSetup.splitLineColorYLeft,
- width: optionsSetup.splitLineFontWidthYLeft,
- },
- },
- },
- {
- max: optionsSetup.maxYRight !== "" ? optionsSetup.maxYRight : null,
- type: "value",
- scale: optionsSetup.scaleYRight,
- // 均分
- splitNumber: optionsSetup.splitNumberYRight,
- // 坐标轴是否显示
- show: optionsSetup.isShowYRight,
- position: optionsSetup.positionYRight,
- offset: optionsSetup.offsetYRight,
- // 坐标轴名称
- name: optionsSetup.textNameYRight,
- nameLocation: optionsSetup.nameLocationYRight,
- // 别名
- nameTextStyle: {
- color: optionsSetup.nameColorYRight,
- fontSize: optionsSetup.nameFontSizeYRight,
- fontWeight: optionsSetup.nameFontWeightYRight,
- fontStyle: optionsSetup.nameFontStyleYRight,
- fontFamily: optionsSetup.nameFontFamilyYRight,
- },
- axisLabel: {
- show: optionsSetup.isShowAxisLabelYRight,
- // 文字角度
- rotate: optionsSetup.textAngleYRight,
- textStyle: {
- // 坐标文字颜色
- color: optionsSetup.textColorYRight,
- fontSize: optionsSetup.textFontSizeYRight,
- fontWeight: optionsSetup.textFontWeightYRight,
- fontStyle: optionsSetup.textFontStyleYRight,
- fontFamily: optionsSetup.textFontFamilyYRight,
- },
- },
- axisLine: {
- show: optionsSetup.isShowAxisLineYRight,
- lineStyle: {
- width: optionsSetup.lineWidthYRight,
- color: optionsSetup.lineColorYRight,
- },
- },
- axisTick: {
- // 刻度
- show: optionsSetup.isShowAxisLineYRight,
- lineStyle: {
- width: optionsSetup.lineWidthYRight,
- color: optionsSetup.lineColorYRight,
- }
- },
- splitLine: {
- show: optionsSetup.isShowSplitLineYRight,
- lineStyle: {
- color: optionsSetup.splitLineColorYRight,
- width: optionsSetup.splitLineFontWidthYRight,
- },
- },
- },
- ];
- this.options.yAxis = yAxis;
- },
- // 折线设置 数值设置
- setOptionsLine() {
- const optionsSetup = this.optionsSetup;
- const series = this.options.series;
- for (const key in series) {
- if (series[key].type === "line") {
- series[key].symbol = optionsSetup.symbol;
- series[key].showSymbol = optionsSetup.markPoint;
- series[key].symbolSize = optionsSetup.pointSize;
- series[key].smooth = optionsSetup.smoothCurve;
- if (optionsSetup.area) {
- series[key].areaStyle = {
- opacity: optionsSetup.areaThickness / 100,
- };
- } else {
- series[key].areaStyle = {
- opacity: 0,
- };
- }
- series[key].lineStyle = {
- width: optionsSetup.lineWidth,
- };
- series[key].itemStyle.borderRadius = optionsSetup.radius;
- series[key].label = {
- show: optionsSetup.isShowLine,
- position: optionsSetup.fontPositionLine,
- distance: optionsSetup.fontDistanceLine,
- fontSize: optionsSetup.fontSizeLine,
- color: optionsSetup.fontColorLine,
- fontWeight: optionsSetup.fontWeightLine,
- formatter: !!optionsSetup.percentSignLine ? '{c}%' : '{c}',
- fontStyle: optionsSetup.fontStyleLine,
- fontFamily: optionsSetup.fontFamilyLine,
- };
- }
- }
- this.options.series = series;
- },
- // 柱体设置 数值设置
- setOptionsBar() {
- const optionsSetup = this.optionsSetup;
- const series = this.options.series;
- for (const key in series) {
- if (series[key].type === "bar") {
- series[key].label = {
- show: optionsSetup.isShowBar,
- position: optionsSetup.fontPositionBar,
- distance: optionsSetup.fontDistanceBar,
- fontSize: optionsSetup.fontSizeBar,
- color: optionsSetup.fontColorBar,
- fontWeight: optionsSetup.fontWeightBar,
- formatter: !!optionsSetup.percentSignBar ? '{c}%' : '{c}',
- fontStyle: optionsSetup.fontStyleBar,
- fontFamily: optionsSetup.fontFamilyBar,
- };
- //柱体背景属性
- series[key].showBackground = optionsSetup.isShowBackground;
- series[key].backgroundStyle = {
- color: optionsSetup.backgroundStyleColor,
- borderColor: optionsSetup.backgroundStyleBorderColor,
- borderWidth: optionsSetup.backgroundStyleBorderWidth,
- borderType: optionsSetup.backgroundStyleBorderType,
- shadowBlur: optionsSetup.backgroundStyleShadowBlur,
- shadowColor: optionsSetup.backgroundStyleShadowColor,
- opacity: optionsSetup.backgroundStyleOpacity / 100,
- };
- series[key].barWidth = optionsSetup.maxWidth;
- series[key].barMinHeight = optionsSetup.minHeight;
- series[key].itemStyle.barBorderRadius = optionsSetup.radius;
- }
- }
- this.options.series = series;
- },
- // tooltip 设置
- setOptionsTooltip() {
- const optionsSetup = this.optionsSetup;
- const tooltip = {
- show: optionsSetup.isShowTooltip,
- trigger: optionsSetup.tooltipTrigger,
- axisPointer: {
- type: optionsSetup.tooltipAxisPointerType,
- },
- backgroundColor: optionsSetup.tooltipBackgroundColor,
- borderColor: optionsSetup.tooltipBorderColor,
- borderWidth: optionsSetup.tooltipBorderWidth,
- textStyle: {
- color: optionsSetup.tooltipColor,
- fontSize: optionsSetup.tooltipFontSize,
- fontWeight: optionsSetup.tooltipFontWeight,
- fontStyle: optionsSetup.tooltipFontStyle,
- fontFamily: optionsSetup.tooltipFontFamily,
- },
- };
- this.options.tooltip = tooltip;
- },
- // 边距设置
- setOptionsMargin() {
- const optionsSetup = this.optionsSetup;
- const grid = {
- left: optionsSetup.marginLeft,
- right: optionsSetup.marginRight,
- bottom: optionsSetup.marginBottom,
- top: optionsSetup.marginTop,
- containLabel: true,
- };
- this.options.grid = grid;
- },
- setOptionsLegend() {
- const optionsSetup = this.optionsSetup;
- const legend = {
- show: optionsSetup.isShowLegend,
- left: optionsSetup.lateralPosition,
- //right: optionsSetup.lateralPosition,
- top: optionsSetup.longitudinalPosition,
- //bottom: optionsSetup.longitudinalPosition,
- orient: optionsSetup.layoutFront,
- textStyle: {
- color: optionsSetup.legendColor,
- fontSize: optionsSetup.legendFontSize,
- fontWeight: optionsSetup.legendFontWeight,
- fontStyle: optionsSetup.legendFontStyle,
- fontFamily: optionsSetup.legendFontFamily,
- },
- itemHeight: optionsSetup.legendHeight,
- itemWidth: optionsSetup.legendWidth,
- };
- this.options.legend = legend;
- },
- // 图例名称设置
- setOptionsLegendName(name) {
- const optionsSetup = this.optionsSetup;
- const series = this.options.series;
- const legendName = optionsSetup.legendName;
- // 图例没有手动写则显示原值,写了则显示新值
- if (null == legendName || legendName === "") {
- for (let i = 0; i < name.length; i++) {
- series[i].name = name[i];
- }
- this.options.legend["data"] = name;
- } else {
- const arr = legendName.split("|");
- for (let i = 0; i < arr.length; i++) {
- series[i].name = arr[i];
- }
- this.options.legend["data"] = arr;
- }
- },
- // 图例颜色修改
- setOptionsColor() {
- const optionsSetup = this.optionsSetup;
- const customColor = optionsSetup.customColor;
- if (!customColor) return;
- const arrColor = [];
- for (let i = 0; i < customColor.length; i++) {
- arrColor.push(customColor[i].color);
- }
- this.options.color = arrColor;
- this.options = Object.assign({}, this.options);
- },
- // 数据处理
- setOptionsData(e, paramsConfig) {
- const optionsData = this.optionsData; // 数据类型 静态 or 动态
- // 联动接收者逻辑开始
- optionsData.dynamicData = optionsData.dynamicData || {}; // 兼容 dynamicData undefined
- const myDynamicData = optionsData.dynamicData;
- clearInterval(this.flagInter); // 不管咋,先干掉上一次的定时任务,避免多跑
- if (
- e &&
- optionsData.dataType !== "staticData" &&
- Object.keys(myDynamicData.contextData).length
- ) {
- const keyArr = Object.keys(myDynamicData.contextData);
- paramsConfig.forEach((conf) => {
- if (keyArr.includes(conf.targetKey)) {
- myDynamicData.contextData[conf.targetKey] = e[conf.originKey];
- }
- });
- }
- // 联动接收者逻辑结束
- optionsData.dataType === "staticData"
- ? this.staticDataFn(optionsData.staticData)
- : this.dynamicDataFn(optionsData.dynamicData, optionsData.refreshTime);
- },
- staticDataFn(val) {
- const series = this.options.series;
- let axis = [];
- let bar = [];
- let line = [];
- for (const i in val) {
- axis[i] = val[i].axis;
- bar[i] = val[i].bar;
- line[i] = val[i].line;
- }
- // x轴
- this.options.xAxis.data = axis;
- // series
- for (const i in series) {
- if (series[i].type === "bar") {
- series[i].data = bar;
- } else {
- series[i].data = line;
- }
- }
- const legendName = [];
- legendName.push("bar");
- legendName.push("line");
- const optionsSetup = this.optionsSetup;
- // 根据图表的宽度 x轴的字体大小、长度来估算X轴的label能展示多少个字
- const rowsNum = optionsSetup.textRowsNum !== "" ? optionsSetup.textRowsNum : parseInt((this.optionsStyle.width / axis.length) / optionsSetup.textFontSizeX);
- const axisLabel = {
- show: optionsSetup.isShowAxisLabelX,
- interval: optionsSetup.textIntervalX,
- // 文字角度
- rotate: optionsSetup.textAngleX,
- textStyle: {
- // 坐标文字颜色
- color: optionsSetup.textColorX,
- fontSize: optionsSetup.textFontSizeX,
- fontWeight: optionsSetup.textFontWeightX,
- fontStyle: optionsSetup.textFontStyleX,
- fontFamily: optionsSetup.textFontFamilyX,
- },
- // 自动换行
- formatter: function (value, index) {
- const strs = value.split('');
- let str = ''
- for (let i = 0, s; s = strs[i++];) {
- str += s;
- if (!(i % rowsNum)) str += '\n';
- }
- return str
- }
- }
- if (optionsSetup.textRowsBreakAuto) {
- this.options.xAxis.axisLabel = axisLabel;
- }
- this.options.legend["data"] = legendName;
- this.setOptionsLegendName(legendName);
- },
- dynamicDataFn(val, refreshTime) {
- if (!val) return;
- if (this.ispreview) {
- this.getEchartData(val);
- this.flagInter = setInterval(() => {
- this.getEchartData(val);
- }, refreshTime);
- } else {
- this.getEchartData(val);
- }
- },
- getEchartData(val) {
- const data = this.queryEchartsData(val);
- data.then((res) => {
- this.renderingFn(res);
- });
- },
- renderingFn(val) {
- this.options.xAxis.data = val.xAxis;
- // series
- const series = this.options.series;
- const legendName = [];
- for (const i in series) {
- for (const j in val.series) {
- if (series[i].type === val.series[j].type) {
- series[i].data = val.series[j].data;
- legendName.push(val.series[j].name);
- }
- }
- }
- const optionsSetup = this.optionsSetup;
- // 根据图表的宽度 x轴的字体大小、长度来估算X轴的label能展示多少个字
- const xAxisDataLength = val.length !== 0 ? val.xAxis.length : 1;
- const rowsNum = optionsSetup.textRowsNum !== "" ? optionsSetup.textRowsNum : parseInt((this.optionsStyle.width / xAxisDataLength) / optionsSetup.textFontSizeX);
- const axisLabel = {
- show: optionsSetup.isShowAxisLabelX,
- interval: optionsSetup.textIntervalX,
- // 文字角度
- rotate: optionsSetup.textAngleX,
- textStyle: {
- // 坐标文字颜色
- color: optionsSetup.textColorX,
- fontSize: optionsSetup.textFontSizeX,
- fontWeight: optionsSetup.textFontWeightX,
- fontStyle: optionsSetup.textFontStyleX,
- fontFamily: optionsSetup.textFontFamilyX,
- },
- // 自动换行
- formatter: function (value, index) {
- const strs = value.split('');
- let str = ''
- for (let i = 0, s; s = strs[i++];) {
- str += s;
- if (!(i % rowsNum)) str += '\n';
- }
- return str
- }
- }
- if (optionsSetup.textRowsBreakAuto) {
- this.options.xAxis.axisLabel = axisLabel;
- }
- this.options.legend["data"] = legendName;
- this.setOptionsLegendName(legendName);
- },
- },
- };
- </script>
- <style scoped lang="scss">
- .echarts {
- width: 100%;
- height: 100%;
- overflow: hidden;
- }
- </style>
|