首页 > 其他 > 详细

Chart图表

时间:2020-04-07 22:58:22      阅读:80      评论:0      收藏:0      [点我收藏+]

第一步:引用头

 <script src="~/vendors/Chart.js/Chart.js"></script>

第二步:

 <div style="width:75%;">
       <canvas id="myChart"></canvas>
 </div>

第三步:

        window.chartColors = {
            red: ‘rgb(255, 99, 132)‘,
            orange: ‘rgb(255, 159, 64)‘,
            yellow: ‘rgb(255, 205, 86)‘,
            green: ‘rgb(75, 192, 192)‘,
            blue: ‘rgb(54, 162, 235)‘,
            purple: ‘rgb(153, 102, 255)‘,
            grey: ‘rgb(201, 203, 207)‘
        };

        var ctx = document.getElementById(‘myChart‘).getContext(‘2d‘);
        var chart = new Chart(ctx, {
            type: ‘line‘,
            data: {
                labels: [‘January‘, ‘February‘, ‘March‘, ‘April‘, ‘May‘, ‘June‘, ‘July‘],
                datasets: [{
                    label: ‘My First dataset‘,
                    backgroundColor: window.chartColors.red,
                    borderColor: window.chartColors.red,

                    data: [122, 192, 32, 52, 22, 32, 34],
                    fill: false,
                }, {
                    label: ‘My Second dataset‘,
                    fill: false,
                    backgroundColor: window.chartColors.blue,
                    borderColor: window.chartColors.blue,
                    data: [12, 19, 3, 5, 2, 3, 3],
                }]
            },
            options: {
                responsive: true,
                title: {
                    display: true,
                    text: ‘Chart.js Line Chart‘
                },
                tooltips: {
                    mode: ‘index‘,
                    intersect: false,
                },
                hover: {
                    mode: ‘nearest‘,
                    intersect: true
                },
                scales: {
                    xAxes: [{
                        display: true,
                        scaleLabel: {
                            display: true,
                            labelString: ‘Month‘
                        }
                    }],
                    yAxes: [{
                        display: true,
                        scaleLabel: {
                            display: true,
                            labelString: ‘Value‘
                        }
                    }]
                }
            }
        });

最终效果如下:

技术分享图片

 

Chart图表

原文:https://www.cnblogs.com/jys509/p/12656579.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!