/* * @Descripttion: * @version: * @Author: sueRimn * @Date: 2020-09-02 16:22:58 * @LastEditors: sueRimn * @LastEditTime: 2020-09-07 08:50:58 */ import { Component, OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import {EchartsDataService} from '../../echarts-data.service'; import { MatSnackBarConfig, MatSnackBar } from '@angular/material/snack-bar'; import { DateAdapter } from '@angular/material/core'; declare var echarts: any; @Component({ selector: 'app-delete-four', templateUrl: './delete-four.component.html', styleUrls: ['./delete-four.component.scss'] }) export class DeleteFourComponent implements OnInit { constructor(public route: ActivatedRoute,public data: EchartsDataService,public snackBar: MatSnackBar,private adapter: DateAdapter) { } zhongNameData = ["浦东中队","黄埔中队","徐汇中队","长宁中队","静安中队","普陀中队","虹口中队","杨浦中队","闵行中队","宝山中队","嘉定中队"] zhongNumData = [200,190,180,170,160,150,140,130,120,110,100] level:string; ngOnInit(): void { this.route.queryParams.subscribe(param=>{ this.level=param.level console.log(this.level) }); window.setTimeout(()=>{ this.detailEcharts(this.level) }) } //返回 goBack () { history.go(-1) this.data.statefulInspectionToggle = true } detailEcharts(level){ var detailPlanEchart = echarts.init(document.getElementById('detailBox')); var option = { title: { text: level, left: "center", textStyle: { fontSize: 28 } }, xAxis: { type: 'category', data: this.zhongNameData, // axisLabel: this.axisLabel }, yAxis: { type: 'value' }, tooltip: { trigger: 'item', formatter: (params)=>{ console.log(666,params) return this.tableTooltip(params) }, backgroundColor:'rgba(255,255,255,1)',//通过设置rgba调节背景颜色与透明度 borderWidth:'1', borderRadius :'0' }, series: [{ data: this.zhongNumData, type: 'bar', showBackground: true, backgroundStyle: { color: 'rgba(220, 220, 220, 0.8)' } }] }; detailPlanEchart.setOption(option); } tableTooltip(params:any){ var data = [ {name:params.name,number:params.value,zhanbi:(params.value/1340 * 100).toFixed(2) + "%"} ] var res = '
'+params.name+'
' res+='
'; res+=''; res+=''; res+='' res+='' res+='' res+=''; for(var i=0;i' res+='' res+='' } res+='' // res+='' res+='
名称数量总占比
'+data[i].number+''+data[i].zhanbi+'
总计135619%
' return res } }