123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- <template>
- <div class="chart" :id="id"></div>
- </template>
- <script>
- import util from "@/helper/util.js";
- import partten from "@/helper/partten.js";
- import * as echarts from "echarts";
- export default {
- name: "multiple-y-line-chart-normal",
- componentName: "multiple-y-line-chart-normal",
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "13.889vh",
- },
- // 数据
- list: {
- type: Array,
- default: () => [
- {
- title: "机舱震动x方向",
- yAxisIndex: 0,
- value: [
- {
- text: "-0.003",
- value: -0.003,
- },
- {
- text: "-0.002",
- value: -0.002,
- },
- {
- text: "-0.003",
- value: -0.006,
- },
- {
- text: "-0.003",
- value: -0.003,
- },
- {
- text: "-0.002",
- value: -0.002,
- },
- {
- text: "-0.003",
- value: -0.006,
- },
- {
- text: "-0.003",
- value: -0.003,
- },
- {
- text: "-0.002",
- value: -0.002,
- },
- {
- text: "-0.003",
- value: -0.006,
- },
- ],
- },
- {
- title: "机舱震动y方向",
- yAxisIndex: 1,
- value: [
- {
- text: "-0.01",
- value: -0.01,
- },
- {
- text: "-0.005",
- value: -0.005,
- },
- {
- text: "-0.008",
- value: -0.008,
- },
- {
- text: "-0.01",
- value: -0.01,
- },
- {
- text: "-0.005",
- value: -0.005,
- },
- {
- text: "-0.008",
- value: -0.008,
- },
- {
- text: "-0.01",
- value: -0.01,
- },
- {
- text: "-0.005",
- value: -0.005,
- },
- {
- text: "-0.008",
- value: -0.008,
- },
- ],
- },
- {
- title: "机舱震动最大偏移值",
- yAxisIndex: 2,
- value: [
- {
- text: "1",
- value: 1,
- },
- {
- text: "0.05",
- value: 0.05,
- },
- {
- text: "0.5",
- value: 0.5,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "0.05",
- value: 0.05,
- },
- {
- text: "0.5",
- value: 0.5,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "0.05",
- value: 0.05,
- },
- {
- text: "0.5",
- value: 0.5,
- },
- ],
- },
- {
- title: "风速1",
- yAxisIndex: 3,
- value: [
- {
- text: "1",
- value: 1,
- },
- {
- text: "5",
- value: 5,
- },
- {
- text: "3",
- value: 1,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "5",
- value: 5,
- },
- {
- text: "3",
- value: 1,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "5",
- value: 5,
- },
- {
- text: "3",
- value: 1,
- },
- ],
- },
- {
- title: "风速2",
- yAxisIndex: 4,
- value: [
- {
- text: "1",
- value: 1,
- },
- {
- text: "2",
- value: 2,
- },
- {
- text: "3",
- value: 1,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "2",
- value: 2,
- },
- {
- text: "3",
- value: 1,
- },
- {
- text: "1",
- value: 1,
- },
- {
- text: "2",
- value: 2,
- },
- {
- text: "3",
- value: 1,
- },
- ],
- },
- ],
- },
- showLegend: {
- type: Boolean,
- default: false,
- },
- default: {
- type: Boolean,
- default: false,
- },
- // 轴
- yAxises: {
- type: Array,
- default: () => [
- {
- name: "机舱震动x方向",
- min: -0.01,
- max: 0,
- unit: "",
- position: "left",
- },
- {
- name: "机舱震动y方向",
- min: -0.01,
- max: 0,
- unit: "",
- position: "right",
- },
- {
- name: "机舱震动最大偏移值",
- min: 0,
- max: 1,
- unit: "",
- position: "left",
- },
- {
- name: "风速1",
- min: 0,
- max: 10,
- unit: "",
- position: "right",
- },
- {
- name: "风速2",
- min: 0,
- max: 10,
- unit: "",
- position: "left",
- },
- ],
- },
- markLineData: {
- type: Array,
- defaylt: () => [],
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- color: ["#1DA0D7", "#05BB4C", "#323E6F", "#EDB32F", "#DB5520"],
- };
- },
- computed: {
- legend() {
- return this.list.map((t) => {
- return t.title;
- });
- },
- xdata() {
- if (this.list.length > 1) {
- // this.list[1].value.forEach((lEle, lIndex) => {
- // // console.log(
- // this.list[1].value.indexOf(
- // this.list[1].value[lIndex].text == "00:00"
- // )
- // );
- // });
- return this.list[1]?.value.map((t) => {
- return t.text || new Date(t.ts).formatDate("hh:mm:ss");
- });
- } else if (this.list.length == 1) {
- return this.list[0]?.value.map((t) => {
- return t.text || new Date(t.ts).formatDate("hh:mm:ss");
- });
- }
- },
- yAxis() {
- let result = [];
- let p = { left: 0, right: 0 };
- this.yAxises.forEach((item, index) => {
- result.push({
- type: "value",
- name: `${item.name}${item.unit}`,
- nameLocation: p[item.position] % 2 == 0 ? "end" : "start",
- nameGap: 10,
- min: item.min,
- max: item.max,
- position: item.position,
- offset: p[item.position] * 50,
- axisLabel: {
- formatter: "{value}",
- fontSize: 12,
- },
- //分格线
- splitLine: {
- lineStyle: {
- color:
- this.$store.state.themeName === "dark"
- ? partten.getColor("gray")
- : partten.getColor("black"),
- type: "dashed",
- },
- },
- axisLine: {
- show: true,
- },
- axisTick: {
- show: true,
- },
- });
- p[item.position]++;
- });
- return result;
- },
- series() {
- let result = [];
- this.list.forEach((value, index) => {
- result.push({
- name: value.title,
- type: "line",
- smooth: true,
- zlevel: index,
- lineStyle: {
- normal: {
- color: this.color[index],
- width: 1,
- },
- },
- showSymbol: false,
- yAxisIndex: value.yAxisIndex,
- markLine: this.markLineData
- ? {
- name: "",
- silent: true,
- label: {
- position: "end",
- formatter: "",
- color: "red",
- fontSize: 14,
- },
- data: this.markLineData,
- lineStyle: {
- normal: {
- type: "dashed",
- color: "red",
- width: 2,
- },
- },
- }
- : {},
- data: value.value.map((t) => {
- if (t.value || t.value === 0) {
- return t.value;
- } else if (t.doubleValue || t.doubleValue === 0) {
- return t.doubleValue;
- } else {
- return t.longValue;
- }
- }),
- });
- });
- return result;
- },
- },
- methods: {
- resize() {},
- initChart() {
- const chart = echarts.init(this.$el);
- let option = this.option();
- chart.clear();
- chart.setOption(option);
- if (this.default) {
- chart.dispatchAction({
- type: "showTip",
- seriesIndex: 0, // 显示第几个series
- dataIndex: this.list[0].value.length - 600, // 显示第几个数据
- });
- }
- this.resize = function () {
- chart.resize();
- };
- window.addEventListener("resize", this.resize);
- },
- option: function () {
- let themeName = "";
- this.$store.state.themeName === "dark"
- ? (themeName = true)
- : (themeName = false);
- return {
- color: this.color,
- tooltip: {
- trigger: "axis",
- triggerOn: this.default ? "click" : "mousemove",
- alwaysShowContent: true,
- backgroundColor: themeName
- ? "rgba(0,0,0,0.4)"
- : "rgba(255,255,255,0.5)",
- borderColor: themeName ? partten.getColor("gray") : "#000",
- textStyle: {
- color: themeName ? "#fff" : "#000",
- fontSize: 12,
- },
- },
- legend: {
- show: this.showLegend,
- data: this.legend,
- top: "top",
- icon: "circle",
- itemWidth: 6,
- inactiveColor: themeName ? partten.getColor("gray") : "#000",
- textStyle: {
- color: themeName ? partten.getColor("grayl") : "#000",
- fontSize: 12,
- },
- },
- grid: {
- top: 27,
- left: 16,
- right: 16,
- bottom: 0,
- containLabel: true,
- },
- xAxis: [
- {
- type: "category",
- boundaryGap: false,
- axisLabel: {
- interval:
- Number((this.xdata.length / 8).toFixed(0)) > 2
- ? Number((this.xdata.length / 8).toFixed(0))
- : 0,
- showMinLabel: true,
- showMaxLabel: true,
- formatter: "{value}",
- fontSize: 12,
- textStyle: {
- color: themeName ? partten.getColor("gray") : "#000",
- },
- },
- data: this.xdata,
- },
- ],
- yAxis: {
- type: "value",
- axisLabel: {
- formatter: "{value}",
- fontSize: 14,
- },
- axisLine: {
- show: false,
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: "#606769",
- type: "dashed",
- },
- },
- },
- // yAxis: this.yAxis,
- series: this.series,
- };
- },
- reload: function () {
- const chart = echarts.getInstanceByDom(this.$el);
- chart.clear();
- let option = this.option();
- chart.setOption(option);
- },
- },
- created() {
- this.id = "pie-chart-" + util.newGUID();
- },
- mounted() {
- this.$nextTick(() => {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.initChart();
- });
- },
- beforeUpdate() {
- this.$nextTick(() => {
- this.initChart();
- });
- },
- unmounted() {
- window.removeEventListener("resize", this.resize);
- },
- };
- </script>
- <style lang="scss">
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|