gpt4 book ai didi

javascript - 如何在 ChartJS - AngularJS 上设置 borderWidth?

转载 作者:行者123 更新时间:2023-12-02 16:16:47 25 4
gpt4 key购买 nike

我在 AngularJS 中使用 chart.js。我正在尝试将 borderWidth 设置为 1px

我试过了

this.chart = {
title: 'Threat Trends',
labels: ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'],
series: ['Malware', 'Phishing'],
data: [this.app.malwareSiteCountWeekly, this.app.phishingSiteCountWeekly],
options: {
legend: {
display: true,
position: 'bottom'
}
},
borderWidth: 1,
colors : [this.app.theme.primary, this.app.theme.secondary],
type: 'bar'
};

<canvas
id="bar"
class="chart chart-bar"
chart-data="$ctrl.chart.data"
chart-type="bar"
chart-colors="$ctrl.chart.colors"
chart-labels="$ctrl.chart.labels"
chart-series="$ctrl.chart.series"
chart-options="$ctrl.chart.options"
chart-dataset-override="preOverride">
</canvas>

我不断得到

enter image description here

对我有什么提示吗?

最佳答案

您应该为要应用它的数据集设置边框宽度。

试试这个:

data: {
datasets: [{
borderWidth: 1,
data: [this.app.malwareSiteCountWeekly, this.app.phishingSiteCountWeekly]
}]
};

关于javascript - 如何在 ChartJS - AngularJS 上设置 borderWidth?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66464852/

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