博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
echart
阅读量:4957 次
发布时间:2019-06-12

本文共 2075 字,大约阅读时间需要 6 分钟。

_echarts1() {      this.echarts1 = echart.init(document.getElementById('homeEchart1'))      this.echarts1.setOption({        backgroundColor: '#fff',        tooltip: {          trigger: 'item',          axisPointer: {            type: 'shadow',            label: {              show: true,              backgroundColor: '#333'            }          }        },        grid: {          top: '10%',          left: '1%',          right: '10%',          bottom: '10%',          containLabel: true        },        xAxis: {          data: this.switchX,          axisLine: {            lineStyle: {              color: '#a1a1a1'            }          },          // axisLabel: {
// interval: 0, // rotate: 10 // }, }, yAxis: { splitLine: {show: false}, axisLine: { lineStyle: { color: '#a1a1a1' } } }, series: [ { name: '随访人数', type: 'line', smooth: true, showAllSymbol: true, symbol: 'circle', symbolSize: 4, // color: '#0f0', itemStyle:{ normal:{ color: "#07d5d8" //图标颜色 } }, data: this.switchY, lineStyle: { normal: { width: 1, color: 'rgba(8,213,216,.5)' } }, }, { name: '随访人数', type: 'bar', barWidth: 6, itemStyle: { normal: { barBorderRadius: 5, color: new echart.graphic.LinearGradient( 0, 0, 0.5, 1, [ {offset: 0, color: '#8283da'}, {offset: 0.5, color: '#47aad9'}, {offset: 1, color: '#07d5d8'} ] ) } }, data: this.switchY } ] }) },

 

转载于:https://www.cnblogs.com/xuyan1/p/8320954.html

你可能感兴趣的文章
SQL中Group By的使用
查看>>
错误org/aopalliance/intercept/MethodInterceptor解决方法
查看>>
Pylint在项目中的使用
查看>>
使用nginx做反向代理和负载均衡效果图
查看>>
access remote libvirtd
查看>>
(4) Orchard 开发之 Page 的信息存在哪?
查看>>
ASP.NET中 GridView(网格视图)的使用前台绑定
查看>>
深入了解Oracle ASM(二):ASM File number 1 文件目录
查看>>
Boosting(提升方法)之AdaBoost
查看>>
链接元素<a>
查看>>
Binding object to winForm controller through VS2010 Designer(通过VS2010设计器将对象绑定到winForm控件上)...
查看>>
Spring Boot实战笔记(二)-- Spring常用配置(Scope、Spring EL和资源调用)
查看>>
第二章:webdriver 控制浏览器窗口大小
查看>>
【动态规划】流水作业调度问题与Johnson法则
查看>>
Python&Selenium&Unittest&BeautifuReport 自动化测试并生成HTML自动化测试报告
查看>>
活现被翻转生命
查看>>
POJ 1228
查看>>
SwaggerUI+SpringMVC——构建RestFul API的可视化界面
查看>>
springmvc怎么在启动时自己执行一个线程
查看>>
流操作的规律
查看>>