//select 指标名,达成,目标 var dataset = __dataset__; //传入dataset option__name__= { // backgroundColor: '#1b1b1b', title: [{ x: "center", // y: "70%", //bottom: 100, text: dataset[1][0], textStyle: { // fontWeight: 'normal', // fontSize: 20, // color: "#fff" }, }], series : [ { name:'速度', type:'gauge', min:0, max:100, // center: ['60%', '50%'], // 默认全局居中 //splitNumber:11, // radius: '80%', axisLine: { // 坐标轴线 lineStyle: { // 属性lineStyle控制线条样式 // color: [[0.5, '#ff4500'],[0.9, '#4EE3FF'],[1, 'lime']], // width: 5, // shadowColor : '#fff', //默认透明 // shadowBlur: 10 } }, axisLabel: { // 坐标轴小标记 textStyle: { // 属性lineStyle控制线条样式 fontWeight: 'bolder', // color: '#fff', //shadowColor : '#fff', //默认透明 // shadowBlur: 10 } }, axisTick: { // 坐标轴小标记 // length :15, // 属性length控制线长 lineStyle: { // 属性lineStyle控制线条样式 color: 'auto', // width:3, //shadowColor : '#fff', //默认透明 shadowBlur: 10 } }, splitLine:{//橙色分割线 length:25, lineStyle:{ width:3, // color:'#FCD209', } }, itemStyle:{//指针颜色 // color:'#1e90ff', }, pointer:{//指针长短 // length:110 }, detail: { formatter:dataset[1][1]+'\n{value}%', }, data:[{value: (dataset[1][1]/dataset[1][2]*100).toFixed(0)}] } ] }; charts.push(myChart__name__);