热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

如何在Chartjs中将Y轴值从浮点数更改为整数?

如何解决《如何在Chartjs中将Y轴值从浮点数更改为整数?》经验,为你挑选了2个好方法。

我想将Yaxis从实数更改为整数,这里是图像,请帮我解决这个问题

在此输入图像描述

这是我的代码

var lineChartData = {
  labels: time,
  datasets: [{
    label: "S? ng??i ??ng kí ?ng h?",
    borderColor: window.chartColors.red,
    pointBackgroundColor: window.chartColors.red,
    fill: false,
    data: people_isProcessing
  }, {
    label: "S? ng??i ?ã ?ng h?",
    borderColor: window.chartColors.purple,
    pointBackgroundColor: window.chartColors.purple,
    fill: false,
    data: people_isReceived
  }]
};

这是我的图表选项

window.Onload= function() {
  var chartEl = document.getElementById("chart");
  window.myLine = new Chart(chartEl, {
    type: 'line',
    data: lineChartData,
    options: {
      title: {
        display: true,
        text: 'Kindmate - Chart Static Donate'
      },
      tooltips: {
        enabled: true,
        mode: 'index',
        position: 'nearest',
        custom: customTooltips
      }
    }
  });
});

ɢʀᴜɴᴛ.. 10

在您的情况下,您可以将stepSize属性设置1为y轴刻度,将y轴值从浮点数更改为整数.

options: {
   scales: {
      yAxes: [{
         ticks: {
            stepSize: 1
         }
      }]
   },
   ...
}

ᴅᴇᴍᴏ

var chart = new Chart(ctx, {
   type: 'line',
   data: {
      labels: ['Jan', 'Feb', 'Mar', 'Apr'],
      datasets: [{
         label: '# of votes',
         data: [1, 2, 3, 4]
      }]
   },
   options: {
      scales: {
         yAxes: [{
            ticks: {
               stepSize: 1
            }
         }]
      }
   }
});



1> ɢʀᴜɴᴛ..:

在您的情况下,您可以将stepSize属性设置1为y轴刻度,将y轴值从浮点数更改为整数.

options: {
   scales: {
      yAxes: [{
         ticks: {
            stepSize: 1
         }
      }]
   },
   ...
}

ᴅᴇᴍᴏ

var chart = new Chart(ctx, {
   type: 'line',
   data: {
      labels: ['Jan', 'Feb', 'Mar', 'Apr'],
      datasets: [{
         label: '# of votes',
         data: [1, 2, 3, 4]
      }]
   },
   options: {
      scales: {
         yAxes: [{
            ticks: {
               stepSize: 1
            }
         }]
      }
   }
});



2> Vishal Khode..:

尝试这个:

window.Onload= function() {
            var chartEl = document.getElementById("chart");
            window.myLine = new Chart(chartEl, {
                type: 'line',
                data: lineChartData,
                options: {
                    title:{
                        display:true,
                        text:'Kindmate - Chart Static Donate'
                    },
                    tooltips: {
                        enabled: true,
                        mode: 'index',
                        position: 'nearest',
                        custom: customTooltips
                    },
                      scales: {
                         yAxes: [{
                             ticks: {
                                 beginAtZero: true,
                                 callback: function(value) {if (value % 1   === 0) {return value;}}
                              }
                          }]
                     }
                }
            });


推荐阅读
author-avatar
宝蓝小礼服
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有