gpt4 book ai didi

javascript - 使用 chartJS 显示带有连接点的折线图

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:28 25 4
gpt4 key购买 nike

我想使用 ChartJS 绘制这样的图表。但是我找不到连接第一个和最后一个点并在该连接区域内显示单个唯一点的解决方案。而且我还需要用不同的颜色来设计每个点的样式。我尝试浏览 ChartJS 文档但找不到解决方案。是否有任何具有这些功能的图表绘图库或如何使用 ChartJS 执行此操作?

enter image description here

最佳答案

您可以创建一个 scatter chart而不是 line .

这是一个 example :
(尝试复制您给定的图像 amap)

var chart = new Chart(ctx, {
type: 'scatter',
data: {
datasets: [{
data: [{
x: 1,
y: 1
}, {
x: 3,
y: 7
}, {
x: 6,
y: 5
}, { // add same data as the first one, to draw the closing line
x: 1,
y: 1
}],
borderColor: 'black',
borderWidth: 1,
pointBackgroundColor: ['#000', '#00bcd6', '#d300d6'],
pointBorderColor: ['#000', '#00bcd6', '#d300d6'],
pointRadius: 5,
pointHoverRadius: 5,
fill: false,
tension: 0,
showLine: true
}, {
data: [{
x: 3.5,
y: 4.5
}],
pointBackgroundColor: 'orange',
pointBorderColor: 'darkorange',
pointRadius: 10,
pointHoverRadius: 10
}]
},
options: {
legend: false,
tooltips: false,
scales: {
xAxes: [{
ticks: {
min: 0,
max: 10
},
gridLines: {
color: '#888',
drawOnChartArea: false
}
}],
yAxes: [{
ticks: {
min: 0,
max: 8,
padding: 10
},
gridLines: {
color: '#888',
drawOnChartArea: false
}
}]
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.0/Chart.min.js"></script>
<canvas id="ctx"></canvas>

注意:这只是一个示例,您可以按照 official documentation 进一步自定义以满足您的需要。 .

关于javascript - 使用 chartJS 显示带有连接点的折线图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46232699/

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