微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

react-chartjs-2 刻度不会与中心对齐

如何解决react-chartjs-2 刻度不会与中心对齐

我正在尝试像这样在中心对齐折线图刻度: Image of what I need to achieve

现在我的图表是这样的:Currently achieved

如您所见,我无法删除 xAxis 上的小线或将它们对齐到中心,而且当我有大量数据时,该线会非常尖 Like this 并且会很平滑与其他行一样。

这是我目前的配置:

data: {
            labels: [],datasets: [
              {
                label: false,data: [],fill: true,borderWidth:2,backgroundColor: '#E0F2FE',borderColor: '#14A1FB',poinTradius: 0,lineTension: 0,cubicInterpolationMode: 'monotone',borderCapStyle: 'round',},],options: {
            animation: {
                duration: 0,responsive: true,layout: {
                padding: 2,maintainAspectRatio: false,legend: {
                display: false
                },scales: {
                alignToPixels: true,yAxes: [{
                    position: 'right',ticks: {
                        align: 'start',mirror: true,z: 1,padding: 5,beginAtZero: false,fontColor: '#9c9c9c',maxTicksLimit: 4,offset: true,gridLines: {
                        drawOnChartArea: true,borderDash: [8,4],beginAtZero: true,drawBorder: false,offsetGridLines: true
                    }
                }],xAxes: [{
                    ticks: {
                        align: 'start',padding: -25,fontFamily: "Roboto Regular",source: "labels",maxTicksLimit: '',autoSkip: true,maxRotation: 0,minRotation: 0,tickColor: "transparent"
                    },gridLines: {
                        align: 'start',drawOnChartArea: false,offsetGridLines: false
                    }
                }]
            }
        }

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。