|
@@ -53,19 +53,19 @@ function echarts1View() {
|
|
|
trigger: 'item',
|
|
|
formatter: '{b} : {c} ({d}%)'
|
|
|
},
|
|
|
- legend: {
|
|
|
- right: 0,
|
|
|
- top: 20,
|
|
|
- height: 600,
|
|
|
- itemWidth: 10,
|
|
|
- itemHeight: 10,
|
|
|
- itemGap: 10,
|
|
|
- textStyle: {
|
|
|
- fontSize: 18
|
|
|
- },
|
|
|
- orient: 'vertical',
|
|
|
- data: info.value.one.nameList
|
|
|
- },
|
|
|
+ // legend: {
|
|
|
+ // right: 0,
|
|
|
+ // top: 20,
|
|
|
+ // height: 600,
|
|
|
+ // itemWidth: 10,
|
|
|
+ // itemHeight: 10,
|
|
|
+ // itemGap: 10,
|
|
|
+ // textStyle: {
|
|
|
+ // fontSize: 18
|
|
|
+ // },
|
|
|
+ // orient: 'vertical',
|
|
|
+ // data: info.value.one.nameList
|
|
|
+ // },
|
|
|
calculable: true,
|
|
|
series: [
|
|
|
{
|
|
@@ -73,7 +73,7 @@ function echarts1View() {
|
|
|
color: ['#62c98d', '#2f89cf', '#4cb9cf', '#53b666', '#62c98d', '#205acf', '#c9c862', '#c98b62', '#c962b9', '#7562c9', '#c96262', '#c25775', '#00b7be'],
|
|
|
type: 'pie',
|
|
|
radius: [30, 100],
|
|
|
- center: ['25%', '70%'],
|
|
|
+ center: ['50%', '50%'],
|
|
|
roseType: 'radius',
|
|
|
label: {
|
|
|
normal: {
|
|
@@ -104,45 +104,64 @@ function echarts2View() {
|
|
|
var myChart2 = echarts.init(echarts2.value)
|
|
|
var option2 = {
|
|
|
tooltip: {
|
|
|
- // 鼠标悬浮提示数据
|
|
|
trigger: 'axis',
|
|
|
- borderWidth: 15,
|
|
|
- textStyle: {
|
|
|
- // 文字提示样式
|
|
|
- fontSize: '16'
|
|
|
- },
|
|
|
axisPointer: {
|
|
|
- // 坐标轴虚线
|
|
|
- type: 'cross',
|
|
|
- label: {
|
|
|
- backgroundColor: '#6a7985'
|
|
|
- }
|
|
|
+ type: 'shadow'
|
|
|
+ },
|
|
|
+
|
|
|
+ formatter: function (param) {
|
|
|
+ return param[0].seriesName + ':' + param[0].data + '%<br />' + param[1].seriesName + ':' + param[1].data + '%'
|
|
|
}
|
|
|
},
|
|
|
-
|
|
|
- // },
|
|
|
grid: {
|
|
|
- // 控制图表的位置
|
|
|
- left: '5%',
|
|
|
- right: '5%',
|
|
|
- top: '18%',
|
|
|
- bottom: '5%',
|
|
|
- containLabel: true
|
|
|
+ top: 50,
|
|
|
+ left: 44,
|
|
|
+ right: 44,
|
|
|
+ bottom: 30
|
|
|
},
|
|
|
- xAxis: {
|
|
|
- axisLabel: {
|
|
|
- // X轴线 标签修改
|
|
|
- textStyle: {
|
|
|
- fontSize: '14'
|
|
|
- }
|
|
|
+ legend: {
|
|
|
+ right: '0',
|
|
|
+ textStyle: {
|
|
|
+ color: '#FFFFFF'
|
|
|
},
|
|
|
- data: info.value.two.nameList
|
|
|
+ color: ['#ffcc00', '#28f2e6']
|
|
|
},
|
|
|
+ xAxis: [
|
|
|
+ {
|
|
|
+ type: 'category',
|
|
|
+ data: info.value.two.nameList,
|
|
|
+ axisLabel: {
|
|
|
+ show: true,
|
|
|
+ textStyle: {
|
|
|
+ color: '#7FC5F5'
|
|
|
+ },
|
|
|
+ interval: 0
|
|
|
+ },
|
|
|
+ axisLine: {
|
|
|
+ lineStyle: {
|
|
|
+ color: 'rgba(127,197,245,0.1)',
|
|
|
+ width: 1 //这里是为了突出显示加上的
|
|
|
+ }
|
|
|
+ },
|
|
|
+ triggerEvent: true
|
|
|
+ }
|
|
|
+ ],
|
|
|
yAxis: {
|
|
|
+ // y轴
|
|
|
+ type: 'value',
|
|
|
+ splitNumber: 5, // 横线数
|
|
|
+
|
|
|
axisLabel: {
|
|
|
- // y轴线 标签修改
|
|
|
- textStyle: {
|
|
|
- fontSize: '14'
|
|
|
+ show: true,
|
|
|
+ formatter: '{value}',
|
|
|
+ color: '#7FC5F5'
|
|
|
+ },
|
|
|
+ splitLine: {
|
|
|
+ // 网格线
|
|
|
+ show: true,
|
|
|
+ lineStyle: {
|
|
|
+ color: 'rgba(127,197,245,0.1)',
|
|
|
+ width: 1
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -150,21 +169,27 @@ function echarts2View() {
|
|
|
{
|
|
|
data: info.value.two.list,
|
|
|
type: 'bar',
|
|
|
- barWidth: '48%', //调整柱状图宽度
|
|
|
+ barWidth: '40%',
|
|
|
+ label: {
|
|
|
+ normal: {
|
|
|
+ show: true,
|
|
|
+ position: 'top',
|
|
|
+ fontSize: 18
|
|
|
+ }
|
|
|
+ },
|
|
|
itemStyle: {
|
|
|
normal: {
|
|
|
- /*--------设置柱形图圆角 [左上角,右上角,右下角,左下角]-------------*/
|
|
|
- borderRadius: [12, 12, 0, 0],
|
|
|
- /*--------设置柱形图渐变色 -------------*/
|
|
|
- color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
- {
|
|
|
- offset: 0,
|
|
|
- color: 'rgba(0,244,255,1)'
|
|
|
- },
|
|
|
- {
|
|
|
- offset: 1,
|
|
|
- color: 'rgba(0,77,167,1)'
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ position: 'top',
|
|
|
+ textStyle: {
|
|
|
+ color: '#FFFFFF'
|
|
|
}
|
|
|
+ },
|
|
|
+ color: echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
+ { offset: 0, color: '#28f2e6' },
|
|
|
+ { offset: 0.5, color: 'rgba(40,242,230,0.1)' },
|
|
|
+ { offset: 1, color: 'rgba(255,255,255,0)' }
|
|
|
])
|
|
|
}
|
|
|
}
|