이 글에서는 주로 jQuery 플러그인 echarts를 사용하여 수직 격자선을 제거하는 방법을 소개하고, jQuery 아이콘 플러그인 echarts의 수직 격자선 관련 설정 및 조작 기술을 예제 형식으로 비교 분석합니다. 참조할 수 있어야 합니다. 모든 사람에게 도움이 되기를 바랍니다.
1. 문제 배경
그리드 선에 수직선이 없는 폴리라인을 설계합니다
2. 구현 소스 코드
(1) 수직 그리드 선이 있습니다
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>echarts-有垂直网格线</title> <link rel="shortcut icon" href="../js/echarts-2.2.7/doc/asset/ico/favicon.png" rel="external nofollow" rel="external nofollow" > <script type="text/javascript" src="../js/echarts-2.2.7/doc/asset/js/jquery.min.js" ></script> <script type="text/javascript" src="../js/echarts-2.2.7/doc/example/www2/js/echarts-all.js" ></script> <style> body,html{ width: 99%; height: 99%; font-family: "微软雅黑"; font-size: 12px; } #chart{ width: 100%; height: 100%; } </style> <script> $(function(){ var chart = document.getElementById('chart'); var echart = echarts.init(chart); var option = { title: { text: '' }, tooltip: { trigger: 'axis' }, legend: { data:['人数'] }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, toolbox: { feature: { saveAsImage: {} } }, xAxis: { type: 'category', boundaryGap: false, splitLine:{ show:true }, data: ['周一','周二','周三','周四','周五','周六','周日'] }, yAxis: { type: 'value' }, series: [ { name:'人数', type:'line', stack: '人数', data:[1220, 4132, 6101, 3134, 1890, 6230, 3210] } ] }; echart.setOption(option); }); </script> </head> <body> <p id="chart"></p> </body> </html>
(2) 수직 격자선 없음
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>echarts-去掉垂直网格线</title> <link rel="shortcut icon" href="../js/echarts-2.2.7/doc/asset/ico/favicon.png" rel="external nofollow" rel="external nofollow" > <script type="text/javascript" src="../js/echarts-2.2.7/doc/asset/js/jquery.min.js" ></script> <script type="text/javascript" src="../js/echarts-2.2.7/doc/example/www2/js/echarts-all.js" ></script> <style> body,html{ width: 99%; height: 99%; font-family: "微软雅黑"; font-size: 12px; } #chart{ width: 100%; height: 100%; } </style> <script> $(function(){ var chart = document.getElementById('chart'); var echart = echarts.init(chart); var option = { title: { text: '' }, tooltip: { trigger: 'axis' }, legend: { data:['人数'] }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, toolbox: { feature: { saveAsImage: {} } }, xAxis: { type: 'category', boundaryGap: false, splitLine:{ show:false }, data: ['周一','周二','周三','周四','周五','周六','周日'] }, yAxis: { type: 'value' }, series: [ { name:'人数', type:'line', stack: '人数', data:[1220, 4132, 6101, 3134, 1890, 6230, 3210] } ] }; echart.setOption(option); }); </script> </head> <body> <p id="chart"></p> </body> </html>
3. 구현 결과
(1) 수직 격자선 있음
(2) 수직 격자선 없음
4. 문제 설명
그리드에서 수직선을 제거하고 xAxis에 추가하세요splitLine
属性的设置show:false
관련 권장 사항:
Add in vue 자세한 설명 Echarts 차트 사용
PHP Echarts를 사용하여 통계 보고서 생성에 대한 자세한 설명
위 내용은 수직 격자선을 제거하기 위한 jQuery 플러그인 전자 차트 사용에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!