123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- $(window).load(function(){$(".loading").fadeOut()})
- $(function () {
- // echarts_1();
- // echarts_2();
- // echarts_3();
- // echarts_4();
- // echarts_5();
- // echarts_6();
- // zb1();
- // zb2();
- // zb3();
- // zb4();
- // function echarts_3() {
- // var myChart = echarts.init(document.getElementById('echart3'));
- //
- // option = {
- // tooltip: {
- // trigger: 'axis',
- // axisPointer: {
- // lineStyle: {
- // color: '#dddc6b'
- // }
- // }
- // },
- // grid: {
- // left: '10',
- // top: '20',
- // right: '30',
- // bottom: '10',
- // containLabel: true
- // },
- //
- // xAxis: [{
- // type: 'category',
- // boundaryGap: false,
- // axisLabel: {
- // textStyle: {
- // color: "rgba(255,255,255,.6)",
- // fontSize:16,
- // },
- // },
- // axisLine: {
- // lineStyle: {
- // color: 'rgba(255,255,255,.1)'
- // }
- // },
- //
- // data: ['模拟考1', '模拟考2', '模拟考3', '模拟考4', '模拟考5', '模拟考6', '模拟考7', '模拟考8', '模拟考9', '模拟考10']
- //
- // }, {
- //
- // axisPointer: {show: false},
- // axisLine: { show: false},
- // position: 'bottom',
- // offset: 20,
- //
- // }],
- //
- // yAxis: [{
- // type: 'value',
- // axisTick: {show: false},
- // axisLine: {
- // lineStyle: {
- // color: 'rgba(255,255,255,.1)'
- // }
- // },
- // axisLabel: {
- // textStyle: {
- // color: "rgba(255,255,255,.6)",
- // fontSize:16,
- // },
- // },
- //
- // splitLine: {
- // lineStyle: {
- // color: 'rgba(255,255,255,.1)'
- // }
- // }
- // }],
- // series: [
- // {
- // name: '结算率',
- // type: 'line',
- // smooth: true,
- // symbol: 'circle',
- // symbolSize: 5,
- // showSymbol: false,
- // lineStyle: {
- //
- // normal: {
- // color: '#dddc6b',
- // width: 4
- // }
- // },
- // areaStyle: {
- // normal: {
- // color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
- // offset: 0,
- // color: 'rgba(221, 220, 107, 0.4)'
- // }, {
- // offset: 0.8,
- // color: 'rgba(221, 220, 107, 0.1)'
- // }], false),
- // shadowColor: 'rgba(0, 0, 0, 0.1)',
- // }
- // },
- // itemStyle: {
- // normal: {
- // color: '#dddc6b',
- // borderColor: 'rgba(221, 220, 107, .1)',
- // borderWidth: 12
- // }
- // },
- // data: [70, 85, 65, 82, 94, 84,88,92,90,88]
- //
- // },
- //
- // ]
- //
- // };
- //
- // // 使用刚指定的配置项和数据显示图表。
- // myChart.setOption(option);
- // window.addEventListener("resize",function(){
- // myChart.resize();
- // });
- // }
- })
-
-
-
-
|