how2j.cn

步骤 1 : 曲线图   
步骤 2 : 单曲线   
步骤 3 : 多曲线   
步骤 4 : 多轴   
步骤 5 : 虚线   

曲线图也是非常常用的图表,同样的,我会直接给出代码,同学们需要的时候,直接拿去,改一改就可以用啦
单曲线
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [{ label: '示例', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, }] } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
两组数据
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, }, ] } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
上面的例子,因为是单轴的,所以蓝色看上去被压缩了。
这里做成多轴的,看到就好多了。
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], } } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
borderDash: [5,5] 用于表示虚线。 [5,5] 分别表示虚线的长度和距离。
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', borderDash: [5, 5], }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], } } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2020-11-14 如果前半段用实线,后半段用虚线,该怎么样实现好?
学到我头秃了丶




如果前半段用实线,后半段用虚线,该怎么样实现好?
加载中

							

							





回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到









提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 前端部分-chartjs-曲线图 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图