gpt4 book ai didi

javascript - charts.js 直线 - 我找不到解决方案

转载 作者:搜寻专家 更新时间:2023-11-01 04:54:07 27 4
gpt4 key购买 nike

所以我正在使用 charts.js http://www.chartjs.org/我试图使 2 个点之间的线是直线而不是弯曲的,没有明显的原因。

现在看起来是这样的 http://imgur.com/RrdRgAR,N31ajM7#1

我希望它看起来像基本代数图应该看起来的样子就像上面链接中的另一张图片

当前数据集:

                label: "Shop Sales",
fillColor : "rgba(255, 89, 114, 0.6)",
strokeColor : "rgba(51, 51, 51, 1)",
pointColor : "rgba(255, 89, 114, 1)",
pointStrokeColor : "#fff",
pointHighlightFill : "#fff",
pointHighlightStroke : "rgba(151,187,205,1)",
maintainAspectRatio: false,

window.onload = function(){
var ctx = document.getElementById("canvas").getContext("2d");

window.myLine = new Chart(ctx).Line(lineChartData, {
responsive: true, scaleFontColor: "#FF5972" }

)};

谢谢,我在网上到处找这个

最佳答案

将选项 bezierCurve 设置为 false

window.onload = function(){
var ctx = document.getElementById("canvas").getContext("2d");

window.myLine = new Chart(ctx).Line(lineChartData, {
responsive: true,
scaleFontColor: "#FF5972",
bezierCurve: false
});

});

It's right there in the Line Chart option list. .您还可以通过保留选项设置然后改变 bezierCurveTension 属性来使它们弯曲但“更硬”。

关于javascript - charts.js 直线 - 我找不到解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28568204/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com