gpt4 book ai didi

css - 从 chart.js 图例中删除元素符号点

转载 作者:行者123 更新时间:2023-11-28 12:10:41 25 4
gpt4 key购买 nike

我根据 this 使用 chart.js示例。

我的图例在每个图例项旁边显示要点,我不知道为什么。出现在多个浏览器中。这是我得到的图像:

enter image description here

我尝试添加“list-style-type: none;”到 css 中,但这对我没有影响。

有什么想法吗?下面的 JSFiddle 代码:

**html**
<div style="width: 100%; height: 100%;">
<canvas id="myChart" style="width: 100%; height: auto;"></canvas>
</div>
<div id="js-legend" class="chart-legend"></div>

**js**
var data = [
{
value: 61,
color: "#09355C",
label: "Label 1"
}, {
value: 11,
color: "#CBCBCB",
label: "Label 2"
}, {
value: 28,
color: "#B61B12",
label: "Label 3"
}];

var options = {
segmentShowStroke: false,
animateRotate: true,
animateScale: false,
percentageInnerCutout: 50,
tooltipTemplate: "<%= value %>%"
}

var ctx = document.getElementById("myChart").getContext("2d");
var myChart = new Chart(ctx).Doughnut(data, options);
document.getElementById('js-legend').innerHTML = myChart.generateLegend();

**css**
.chart-legend li span{
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
}

最佳答案

您需要将 list-style-type: none; 添加到 li 元素,例如

.chart-legend li {
list-style-type: none;
}

您当前的 CSS 规则集目标 .chart-legend li span - 添加 list-style-type: none; 没有帮助。

关于css - 从 chart.js 图例中删除元素符号点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32398331/

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